body {
    background-color: #F1F1F1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.recovery-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    animation: fadeIn 1s ease-in-out;
    text-align: center;
}

.recovery-container h2 {
    color: #3157A3;
    margin-bottom: 20px;
}

.btn-orange {
    background-color: #FF6600;
    border: none;
    color: white;
}

.btn-orange:hover {
    background-color: #e05500;
}

.btn-secondary {
    background-color: #3157A3;
    border: none;
}

.btn-secondary:hover {
    background-color: #26468a;
}

a {
    color: #3157A3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
