.forgot-password-page {
    min-height: 100vh;
    background: linear-gradient(to right, #f0f8ff, #e0ffff);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.forgot-password-page .container-page {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.forgot-password-page h1,
.forgot-password-page h2,
.forgot-password-page h3,
.forgot-password-page h4 {
    all: unset;
    display: block;
    font-size: 22px;
    text-align: center;
    color: #007b8a;
    margin-bottom: 25px;
    font-weight: bold;
}

.forgot-password-page .form-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.forgot-password-page .form-group i {
    margin-right: 10px;
    color: #666;
    font-size: 18px;
}

.forgot-password-page input[type="email"] {
    border: none;
    background: none;
    flex: 1;
    outline: none;
    font-size: 15px;
    color: #333;
}

.forgot-password-page input[type="email"]::placeholder {
    color: #aaa;
}

.forgot-password-page button {
    width: 100%;
    background-color: #007b8a;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.forgot-password-page button:hover {
    background-color: #005e6e;
}

.forgot-password-page .error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-left: 5px solid #721c24;
    margin-bottom: 15px;
    border-radius: 6px;
}

.forgot-password-page .success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border-left: 5px solid #155724;
    margin-bottom: 15px;
    border-radius: 6px;
}
