.forgot-password-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f4f6;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 200px);
}

.forgot-password-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.forgot-password-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.forgot-password-container .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.forgot-password-container label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.forgot-password-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.forgot-password-container button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.forgot-password-container button:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
    display: none;
}