* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fc; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.forgot-password-container{
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.forgot-password-form{
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}


.back-to-login {
    text-align: center;
    margin-top: 15px;
}

.back-to-login a{
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
}

.back-to-login a:hover{
    text-decoration: underline;
}
.btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #007bff; 
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;