* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f2f5 0%, #c9d6ff 100%);
    height: 100vh; display: flex; justify-content: center;
    align-items: center; padding: 20px;
}

.recovery-container {
    width: 100%; max-width: 400px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.recovery-card {
    background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
    padding: 40px 30px; border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid white; text-align: center;
}

.recovery-header { margin-bottom: 30px; }

.icon-circle {
    width: 70px; height: 70px; background: #3A5795; color: white;
    border-radius: 50%; display: flex; justify-content: center;
    align-items: center; font-size: 30px; margin: 0 auto 20px;
    box-shadow: 0 8px 15px rgba(58,87,149,0.3);
}

.recovery-header h2 {
    color: #1e293b; font-size: 1.5rem; margin-bottom: 10px;
}

.recovery-header p {
    color: #64748b; font-size: 0.9rem; line-height: 1.5;
}

.form-group { text-align: left; margin-bottom: 20px; }
.form-group label {
    font-size: 0.8rem; font-weight: 600; color: #475569;
    margin-bottom: 8px; display: block;
}

.input-wrapper { position: relative; }
.input-wrapper i {
    position: absolute; left: 15px; top: 50%;
    transform: translateY(-50%); color: #94a3b8;
}

.input-wrapper input {
    width: 100%; padding: 12px 15px 12px 45px;
    border: 2px solid #e2e8f0; border-radius: 12px;
    font-size: 1rem; transition: all 0.3s;
}

.input-wrapper input:focus {
    outline: none; border-color: #3A5795;
    box-shadow: 0 0 0 4px rgba(58,87,149,0.1);
}

.btn-recovery {
    width: 100%; padding: 14px; background: #3A5795;
    color: white; border: none; border-radius: 12px;
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    gap: 10px; transition: 0.3s;
}

.btn-recovery:hover {
    background: #2a4175; transform: translateY(-2px);
}

.btn-recovery:disabled {
    background: #cbd5e1; cursor: not-allowed;
}

.recovery-footer {
    margin-top: 25px; font-size: 0.85rem;
}

.recovery-footer a {
    color: #3A5795; text-decoration: none; font-weight: 500;
}

.recovery-footer a:hover { text-decoration: underline; }

.alert {
    padding: 12px; border-radius: 8px; font-size: 0.85rem;
    margin-bottom: 20px; display: flex; align-items: center;
    gap: 10px; text-align: left;
}

.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }