/* PAGE BACKGROUND */
.form-wrap {
    background: #f8f9fa;
    padding: 60px 15px;
}

/* FORM */
form {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* HEADER */
.form-header {
    background: #a57b15;
    padding: 25px 30px;
    color: #fff;
    text-align: center;
}
.form-header h2 { font-size: 24px; font-weight: 700; margin-bottom: 5px; }
.form-header p { font-size: 14px; opacity: .9; margin: 0; }

/* BODY */
.form-body { padding: 25px 30px; }
.section { margin-bottom: 25px; }
.section h3 { font-size: 15px; font-weight: 600; color: #021c2d; margin-bottom: 15px; }

/* CARD */
.student {
    background: #f9fbff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e3e8f1;
}
.student strong { font-size: 13px; font-weight: 600; color: #0d6efd; display: block; margin-bottom: 10px; }

/* INPUTS */
.student input, .student select {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d4deea;
    font-size: 14px;
    background: #fff;
    margin-bottom: 10px;
}
.student input:focus, .student select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* PRICE BAR */
.price-card {
    background: #2370b6;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BUTTON */
.submit-btn {
    margin-top: 20px;
    width: 100%;
    height: 45px;
    border-radius: 10px;
    background: #a47a21;
    font-size: 16px;
    font-weight: 700;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.submit-btn:hover { background: #a47a21; }

/* HIDDEN */
.hidden { display: none; }

/* MOBILE */
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } .form-header, .form-body { padding: 20px; } }
