/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    height: 100%;
}

/* Centered Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('bg.jpg') no-repeat center center/cover; /* Add background image */
    background-color: rgba(78, 115, 223, 0.6); /* Semi-transparent background color */
}

/* Login Form */
.login-form {
    background: rgba(255, 255, 255, 0.3); /* Fully transparent background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
    max-width: 400px;
}

/* Form Elements */
.login-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}
    

.btn {
    background: #4e73df;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn:hover {
    background: #3757c3;
    transform: scale(1.02);
}

/* Error Message */
.error-msg {
    color: #e74a3b;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
}

.forgot-password-container a {
    color: #ff5722;
    text-decoration: none;
    font-size: 14px;
 }
 
 .forgot-password-container a:hover {
    text-decoration: underline;
 }

/* Centered Reset Password Container */
.reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('bg.jpg') no-repeat center center/cover; /* Add background image */
    background-color: rgba(78, 115, 223, 0.6); /* Semi-transparent background color */
}

/* Reset Password Form */
.reset-password-form {
    background: rgba(255, 255, 255, 0.3); /* Fully transparent background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Form Elements */
.reset-password-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group .eye-icon {
    position: absolute;
    right: 10px;
    top: 65%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
 }

.eye-icon:hover {
    color: #333;
}

.success-message {
    font-size: 14px;
    color: #27ae60;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.error-message {
    font-size: 14px;
    color: #ff0000;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}