
    body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #bee1ff, #000428);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        color: #fff;
    }

    .login-box {
        background: rgba(255, 255, 255, 0.1);
        padding: 35px 40px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        width: 400px;
        backdrop-filter: blur(10px);
    }

    .login-box h2 {
        text-align: center;
        margin-bottom: 25px;
        font-weight: 600;
        font-size: 22px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .login-box label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
    }

    .login-box input {
        width: 100%;
        padding: 10px 12px;
        border-radius: 6px;
        border: none;
        font-size: 14px;
        color: gray;
    }

    .login-box button {
        width: 100%;
        padding: 12px;
        background: #00c6ff;
        color: #000;
        border: none;
        font-size: 15px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
    }

    .login-box button:hover {
        background: #00a2d4;
    }

    .school-title {
        text-align: center;
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 10px;
    }
