body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0') no-repeat center center/cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px;
    width: 300px;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.glass-card h2 {
    margin-bottom: 20px;
}

.glass-card input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    outline: none;
    border-radius: 5px;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.options a {
    color: #ddd;
    text-decoration: none;
}

.glass-card button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #00b894;
    color: white;
    font-size: 1em;
    cursor: pointer;
}

.switch {
    margin-top: 15px;
    font-size: 0.9em;
}

.switch a {
    color: #00cec9;
    text-decoration: none;
}

.g-recaptcha {
    margin-bottom: 10px;
}

.resend-manual {
    margin-top: 10px;
}