body {
    min-height: 100vh;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recover-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.recover-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #4e54c8;
    margin-bottom: 10px;
}

.recover-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.recover-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #6610f2;
    box-shadow: 0 0 8px rgba(102,16,242,0.3);
    outline: none;
}

.input-group-text {
    background: transparent;
    border: none;
    color: #6c757d;
}

.btn-recover {
    border-radius: 15px;
    padding: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #4e54c8, #6610f2);
    border: none;
    color: #fff;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-recover:hover {
    background: linear-gradient(135deg, #6610f2, #4e54c8);
    transform: translateY(-2px);
}

.extra-links {
    margin-top: 20px;
    font-size: 0.9rem;
}

.extra-links a {
    text-decoration: none;
    color: #6610f2;
    font-weight: 500;
}

.extra-links a:hover {
    text-decoration: underline;
}