 /* BODY DESIGN */
 body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #00218b, #fffc58);
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Form Box */
.form-box {
    border: 2px solid #f7f440;
    padding: 25px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
}

/* School Logos */
.logo {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
}

/* Form Header */
h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

/* Form Layout */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Labels */
.form-group {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Input Fields */
input[type="text"], 
input[type="email"], 
input[type="password"],
select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 2px solid #b4b4b4;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Submit Button */
.center-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

input[type="submit"] {
    width: 100%;
    max-width: 200px;
    padding: 10px;
    background-color: #008000;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #006400;
}

/* Back Link */
.back-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.back-link:hover {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-box {
        width: 90%;
    }

    input[type="text"], input[type="email"], select {
        width: 100%;
    }
}