@charset "UTF-8";

#wrapper {
    width: 70%; 
    margin: 2em auto;
    padding: 2em;
    background-color: #fdfaf5;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

div#formcol1 {
    float: left; 
    width: 100%;
    margin-bottom: 1.5em;
}

/* Removes bullet points */
#formcol1 li {
    list-style: none;
    margin-bottom: 0.8em;
}

#req-info {
    font-size: 0.85em;
    font-style: italic;
    color: #a02020;
    margin: 0 0 1.5em 7em;
}

/* Required fields */
#formcol1 input.reqfield {
    background: #fffde7; 
    border-left: 4px solid #bd6258; /* Added a subtle visual indicator */
}

label {
    margin-right: 0.8em;
    width: 8em;
    display: inline-block; 
    text-align: right;
    font-weight: 600;
    color: #444;
}

/* Highlighting current keyboard and mouse focus */
select:focus, select:active, 
input:focus, input:active, 
input:focus + label, input:active + label, 
label[for]:focus, label[for]:active {
    color: #FFF !important;
    background-color: #bd6258 !important;
    outline: none;
}

h1 {
    color: #2c3e50;
    border-bottom: 2px solid #bd6258;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1.5em;
    margin-bottom: 1.5em;
}

legend {
    font-weight: bold;
    padding: 0 0.5em;
    color: #bd6258;
    font-size: 1.1em;
}

input[type="text"] {
    padding: 0.4em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    transition: all 0.3s ease;
}

#multchoice p span {
    margin-right: 1.5em;
}

#multchoice label {
    width: auto;
    text-align: left;
    font-weight: normal;
    margin-right: 0;
}

.submit-button input {
    display: block;
    margin: 2em auto 0 auto;
    padding: 0.8em 2em;
    font-size: 1.1em;
    font-weight: bold;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button input:hover {
    background-color: #bd6258;
}

/* End of form css */