#appointment-section {
    margin-top: 20px;
    position: relative;
}

#appointment-consent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 63, 125, 0.88);
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}

.appt-group {
    margin-bottom: 12px;
}

.appt-group label {
    display: block;
    margin-bottom: 4px;
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.appt-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    font-family: Open Sans, sans-serif;
    font-size: 15px;
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #333333;
}

.appt-input:focus {
    outline: none;
    border-color: #9BCB43;
}

textarea.appt-input {
    resize: vertical;
}

.appt-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #ffffff;
    color: #003f7d;
    border: none;
    font-family: Open Sans, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
}

.appt-btn:hover {
    background: #9BCB43;
    color: #ffffff;
}

.appt-error {
    color: #ff4444;
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
}
