/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.recovery-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.recovery-heading {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
}

.recovery-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 5px;
    display: inline-block;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid #dddddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

.recovery-btn {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.recovery-btn:hover {
    background-color: #0056b3;
}

.login-redirect {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555555;
}

.login-redirect a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.login-redirect a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 500px) {
    .recovery-container {
        padding: 20px;
    }

    .recovery-heading {
        font-size: 1.5rem;
    }
}
