/* apply.php form styles
   Guided by style_doorstep_index.css tokens/visual language */

.application-form {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.application-form h3 {
    margin: 4px 0;
}

.application-form label {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    font-weight: 600;
}

#name {
    display: flex;
    /*flex-direction: row;*/
    flex-flow: wrap;
    justify-content: space-around;

}

div#name {
    width: 300px;

    margin: 8px;
    padding: 3px;
    flex-basis: auto;
    flex-grow: 1;
}


.application-form input{
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
div#name input{
    width: 202px;
}
.application-form select{
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    /*appearance: none;*/
    padding: 3px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}
.application-form option{
    color: rgba(11,18,32,1);
}
.application-form textarea {
    width: 100%;
    min-height: 140px;
    resize: vertical;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
}

.application-form textarea {

}

.application-form .btn {
    justify-self: start;
}
