* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f1f6f4;
    color: #1f2937;
    line-height: 1.6;
}


/* =========================
   HEADER
========================= */

.header {
    background: linear-gradient(135deg, #075e54, #0b806f);
    color: white;
    padding: 22px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.header-content {
    max-width: 1050px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: white;
    color: #075e54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.school-info h1 {
    font-size: 21px;
    letter-spacing: 0.5px;
}

.school-info p {
    margin-top: 3px;
    font-size: 14px;
    opacity: 0.9;
}


/* =========================
   HERO
========================= */

.hero {
    background:
        linear-gradient(
            rgba(5, 67, 60, 0.92),
            rgba(5, 67, 60, 0.92)
        ),
        url("assets/banner.jpg");

    background-size: cover;
    background-position: center;

    color: white;
    padding: 65px 20px;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: auto;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero p {
    font-size: 17px;
    max-width: 700px;
    margin: auto;
}

.hero-small {
    margin-top: 12px !important;
    font-size: 14px !important;
    opacity: 0.85;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: 92%;
    max-width: 950px;
    margin: -35px auto 60px;
    position: relative;
}


/* =========================
   PROGRESS
========================= */

.progress-container {
    background: white;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    min-width: 100px;
}

.progress-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.progress-step.active {
    color: #075e54;
}

.progress-step.active span {
    background: #075e54;
    color: white;
}

.progress-step small {
    font-size: 12px;
}

.progress-line {
    height: 2px;
    width: 100px;
    background: #e5e7eb;
}


/* =========================
   FORM SECTION
========================= */

.form-section {
    background: white;
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.section-number {
    width: 48px;
    height: 48px;
    background: #e7f5f1;
    color: #075e54;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.section-title h3 {
    font-size: 21px;
    color: #075e54;
}

.section-title p {
    color: #6b7280;
    font-size: 13px;
}


/* =========================
   FORM GROUP
========================= */

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 9px;
    color: #1f2937;
}

.form-group label span {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 13px 15px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.25s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b806f;
    box-shadow: 0 0 0 3px rgba(11,128,111,0.12);
}

.form-group textarea {
    resize: vertical;
}

.description {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 8px;
}

.hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}


/* =========================
   UPLOAD
========================= */

.upload-box {
    border: 2px dashed #b7d8d1;
    background: #f5fbf9;
    padding: 35px 25px;
    text-align: center;
    border-radius: 15px;
}

.upload-icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.upload-box h4 {
    color: #075e54;
    font-size: 18px;
    margin-bottom: 5px;
}

.upload-box p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 18px;
}

.upload-box input {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding: 10px;
}

.upload-box small {
    display: block;
    margin-top: 12px;
    color: #6b7280;
}


/* =========================
   AGREEMENT
========================= */

.agreement {
    background: #fff;
    padding: 22px;
    border-radius: 15px;
    margin-bottom: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #075e54;
}


/* =========================
   BUTTON
========================= */

.form-footer {
    text-align: center;
}

.btn-submit {
    border: none;
    background: linear-gradient(135deg, #075e54, #0b806f);
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 6px 15px rgba(7,94,84,0.25);
}

.btn-submit span {
    margin-left: 10px;
    font-size: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(7,94,84,0.3);
}

.form-footer p {
    margin-top: 12px;
    font-size: 12px;
    color: #6b7280;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #064c43;
    color: white;
    text-align: center;
    padding: 35px 20px;
}

footer h3 {
    margin-bottom: 8px;
}

footer p {
    font-size: 13px;
    opacity: 0.85;
}

footer .copyright {
    margin-top: 15px;
    opacity: 0.6;
}


/* =========================
   RESPONSIVE HP
========================= */

@media (max-width: 700px) {

    .header-content {
        text-align: center;
        flex-direction: column;
    }

    .school-info h1 {
        font-size: 17px;
    }

    .hero {
        padding: 45px 18px;
    }

    .hero h2 {
        font-size: 27px;
    }

    .hero p {
        font-size: 14px;
    }

    .container {
        width: 94%;
    }

    .progress-container {
        padding: 15px 5px;
    }

    .progress-step {
        min-width: 75px;
    }

    .progress-line {
        width: 35px;
    }

    .progress-step small {
        font-size: 10px;
    }

    .form-section {
        padding: 23px 18px;
    }

    .section-title h3 {
        font-size: 18px;
    }

    .section-title p {
        font-size: 12px;
    }

    .section-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .btn-submit {
        width: 100%;
    }
}