.crio-patient-form .field-error {
    color: red;
    font-size: 13px;
    margin-top: -20px;
    min-height: 18px;
    margin-bottom: 5px;
}

.crio-patient-form .spinner-area {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    margin-bottom: 20px;
}

.crio-patient-form .disclaimer {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.crio-patient-form .form-btns {
    margin-top: 20px;
}

.crio-patient-form .form-btns-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.crio-patient-form .btn-submit {
    background-color: #F65E3B;
    color: #ffffff;
    border: none;
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.crio-patient-form .btn-submit:hover {
    background-color: #E54E2B;
}

@media (max-width: 768px) {
    .crio-patient-form .form-btns-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .crio-patient-form .btn-submit {
        width: 100%;
        margin-top: 15px;
    }
}

.crio-patient-form input[type="text"],
.crio-patient-form input[type="email"],
.crio-patient-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.crio-patient-form select {
    height: 42px;
}

.modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
}

#top .disclaimer label {
    font-weight: 400 !important;
}