/* ==============================
   🌟 Login & Password Reset Styling
================================= */
.login-container {
    max-width: 400px;
}

/* 🔹 Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* 🔹 Forgot Password Link */
.forgot-password {
    color: #226DAA;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* 🔹 Signup Redirect */
.signup-link {
    text-align: center;
    margin-top: 15px;
}

.signup-link a {
    color: #226DAA;
    text-decoration: none;
    font-weight: bold;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* 🔹 Password Reset Styling */
.reset-btn {
    background-color: #008000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s ease;
}

.reset-btn:hover {
    background-color: #006400;
}
