/**************************************************************************
OEM Project Inquiry
**************************************************************************/

.form-section{
    background:#ffffff;
    border-radius:10px;
    padding:30px;
    margin:35px 0;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.form-section h3{
    margin-top:0;
    margin-bottom:20px;
    color:#222;
    border-bottom:2px solid #cc0000;
    padding-bottom:10px;
}
.form-row{
    margin-bottom:22px;
}
.form-row label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}
.form-row input,
.form-row select,
.form-row textarea{
    width:100%;
    box-sizing:border-box;
}
.form-half{
    width:48%;
}
.form-required-note{
    background:#fff9e8;
    border-left:4px solid #d50000;
    padding:15px 20px;
    margin-bottom:30px;
}
.required{
    color:#d50000;
}
small{
    display:block;
    margin-top:5px;
    color:#666;
    font-size:.9em;
}

/**************************************************************************
Radio Groups
**************************************************************************/

.radio-group{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:10px;
}
.radio-group label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    cursor:pointer;
    font-weight:normal;
}
.radio-group input[type="radio"]{
    width:auto;
    margin-top:4px;
    flex-shrink:0;
}
.radio-group small{
    display:block;
    margin-left:28px;
}