.login-container {
    max-width: 370px;
    margin: 60px auto 0 auto;
    background: #fffbe6;
    border: 2px solid #ffd700;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 32px 28px 18px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.login-logo img {
    height: 60px;
    border-radius: 50%;
}
.login-logo .school-name {
    font-size: 22px;
    color: #1a237e;
    font-weight: bold;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}
.login-form input {
    padding: 10px 12px;
    border: 1.5px solid #ffd700;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    background: #fff;
    transition: border 0.2s;
}
.login-form input:focus {
    border-color: #1a237e;
}
.login-form button {
    background: #ffd700;
    color: #1a237e;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.login-form button:hover {
    background: #ffed4a;
}
.login-form .forgot {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 8px;
}
.login-form .forgot a {
    color: #1a237e;
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.85;
    transition: color 0.2s;
}
.login-form .forgot a:hover {
    color: #d32f2f;
}
.login-copyright {
    margin-top: 38px;
    text-align: center;
    color: #888;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.login-label {
    display: block;
    margin-bottom: 4px;
    margin-top: 8px;
    font-size: 15px;
    color: #1a237e;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.login-form input:first-of-type {
    margin-top: 0;
}
@media (max-width: 600px) {
    .login-container {
        max-width: 98vw;
        padding: 18px 6px 10px 6px;
    }
    .login-logo .school-name {
        font-size: 17px;
    }
} 