/* Forgot Password Wrapper */
.forgot-password-wrapper {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title */
.forgot-password-wrapper h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Form Labels */
.forgot-password-wrapper label {
    font-size: 16px;
    margin-bottom: 8px;
    display: inline-block;
    color: #555;
}

/* Input Fields */
.forgot-password-wrapper input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.forgot-password-wrapper input[type="email"]:focus {
    border-color: #0056b3;
    outline: none;
}

/* Button Styles */
.forgot-password-wrapper button {
    padding: 12px 20px;
    background-color: #006400;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.forgot-password-wrapper button:hover {
    background-color: #004080;
}

/* Success and Error Messages */
.forgot-password-wrapper .form-success,
.forgot-password-wrapper .form-error {
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    color: #fff;
}

.forgot-password-wrapper .form-success {
    background-color: #28a745;
}

.forgot-password-wrapper .form-error {
    background-color: #dc3545;
}

body {
  font-family: Arial, sans-serif;
  /*  background-image: url("/images/background.jpg"); */
  background-color: rgb(173, 173, 173);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
}

.page-wrapper {
  display: flex;
  flex-direction: column;  
}