* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.forgot-container {
    width: 100%;
    max-width: 400px;
}

.forgot-form {
    background: rgba(255,255,255,0.08);
    padding: 30px 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    color: white;
    text-align: center;
}

.forgot-form h1 {
    margin-bottom: 20px;
    color: #38bdf8;
}

.forgot-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.forgot-form button {
    width: 100%;
    padding: 12px;
    background: #38bdf8;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.forgot-form button:hover {
    background: #0ea5e9;
    color: white;
}

.forgot-form a {
    display: block;
    margin-top: 14px;
    color: #22c55e;
    text-decoration: none;
}

#studentForgotMsg {
    margin-top: 12px;
    font-size: 14px;
}