/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
    background-color: #ded9d5;
    color: #000;
    margin: 0;
    padding: 0 5% 10%;
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 20px;
}
h1 {
    font-size: 1.4em;
}
h2 {
    font-size: 1.2em;
}
h3 {
    font-size: 1.1em;
}
.logo {
    text-align: center;
    margin: 40px auto;
}
.logo img {
    max-width: 100%;
    width: 330px;
}
.form-container {
    margin: 0 auto;
    max-width: 1000px;
}
fieldset {
    margin: 0;
    padding: 0;
    border: none;
}
label {
    display: inline;
}
input {
    padding: 10px;
    margin: 10px 0 20px;
    font-size: 1em;
}
input[type=radio] {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
}
input[type=checkbox] {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
}
input[type=submit] {
    margin-top: 30px;
    padding: 0.6em 1em;
    color: #000;
    font-size: 1.1em;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #6fed78;
    cursor: pointer;
}
input[type=submit]:hover {
    color: #6fed78;
    border: 2px solid #000;
    background-color: #000;
}

ul.errors {
  color: red;
  font-size: 1.4em;
}

fieldset.state_state {
  display: none;
}

@media only screen and (max-width: 600px) {
.logo img {
    width: 115px;
}
}