.server-error-message {
    background-color: #ffe5e5;
    color: #d10000;
    font-weight: 500;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: left;
  }



/* Center the Forget Password box */
.forget-password-container {
    margin: 10% 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: #f8f8f8;
}

/* Forget Password Box */
.forget-password-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 450px;
}

/* Title Styling */
.forget-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Email Input Field */
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Continue Button */
.continue-btn {
    width: 100%;
    background: #00B207;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.continue-btn:hover {
    background: #008C04;
}
