/* PAGE */
body {
    background: #ffffff;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* MAIN BOX */
.full-box {
    width: 95%;
    max-width: 850px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* TOP BORDER IMAGE */
.form-top-border {
    width: 100%;
    height: 180px;
    background-image: url("images/top_border.png");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

/* FORM CONTENT BOX (NARROWER NOW!) */
.form-card {
    width: 75%;         /* ? Makes inputs smaller and perfect */
    margin: auto;
    padding: 10px;
}

/* TITLES */
.title {
    text-align: center;
    font-size: 42px;
    color: #0b3d91;
    margin: 10px 0 5px 0;
}

.subtitle {
    text-align: center;
    color: #FF0000;
    margin: 0;
    font-size: 18px;
}

.subtitle2 {
    text-align: center;
    color: black;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-title {
    text-align: center;
    font-size: 28px;
    color: #0b3d91;
    margin-bottom: 15px;
}

/* LABELS */
label {
    margin-top: 12px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}

/* INPUTS */
input, textarea, select {
    width: 100%;
    padding: 8px 10px;        
    border-radius: 8px;
    border: 1px solid #cbdafc;
    background: #f9fbff;
    margin-bottom: 14px;      
    font-size: 15px;
}

/* TWO COLUMN LAYOUT */
.row {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.col {
    flex: 1;
}

.col input,
.col select {
    width: 100%;
    padding: 8px 10px;
}

/* BUTTON */
.btn {
    width: 100%;
    background: #0b63d6;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 17px;
}

.btn:hover {
    background: #084a9a;
}
#fashion_section {
    display: none;
}

/* BOTTOM BORDER IMAGE */
.form-bottom-border {
    width: 100%;
    height: 180px;
    background-image: url("images/bottom_border.png");
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.blue-box {
    border-left: 5px;
    margin: 25px auto;
    width: 85%;
    border-radius: 10px;
    text-align: left;
}

.blue-box ul {
    margin: 5px 0 0 0;
    padding-left: 20px;
}

.blue-box li {
    margin-bottom: 6px;
    font-size: 16px;
    color: #222;
    line-height: 1.5;
}

.blue-box-title {
    font-weight: bold;
    font-size: 18px;
    color: #0b4da2;
    margin-bottom: 3px;
}
.btn {
    width: auto !important;      /* stops full width */
    padding: 10px 25px;
    background: #0b63d6;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin: 20px auto;
}
.btn:hover {
    background: #084a9a;
}

/* ---------------- HEADER ---------------- */
.header {
    width: 100%;
    background: #ffffff;
    padding: 15px 0;
    display: flex;
    flex-direction: column;     /* Stack logo + title vertically */
    align-items: center;        /* Center horizontally */
    justify-content: center;
    text-align: center;
}

.header img {
    height: 80px;               /* adjust size */
    margin-bottom: 5px;
}

.header .school-title {
    font-size: 26px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
}

.simple-footer {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    background: #f39020; 
    color: white;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 2;
       border-top: 3px solid #f39020;
}

.simple-footer a {
    color: white;
    text-decoration: none;
}

.simple-footer a:hover {
    text-decoration: underline;
}
/* Popup Background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.popup-box h2 {
    margin-bottom: 15px;
    color: #0b63d6;
}

.popup-box p {
    font-size: 16px;
    margin: 6px 0;
}


/* MOBILE */
@media (max-width: 600px) {
    .form-card {
        width: 90%; /* wider for mobile */
    }
    .row { 
        flex-direction: column;
    }
}