* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.forgot-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    padding: 40px;
}
.forgot-header {
    text-align: center;
    margin-bottom: 30px;
}
.forgot-header h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}
.forgot-header p {
    color: #666;
    font-size: 14px;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}
input[type="email"]:focus {
    outline: none;
    border-color: #667eea;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-submit:hover {
    transform: translateY(-2px);
}
.btn-submit:active {
    transform: translateY(0);
}
.links {
    margin-top: 20px;
    text-align: center;
}
.links a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}
.links a:hover {
    text-decoration: underline;
}
.alert {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}
.alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}
