/* Login Section */
.login-page {
    flex-grow: 1; /* Allow the login content to grow and take up space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the form */
    align-items: center; /* Horizontally center the form */
}

/* Login container */
.login-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content inside the form */
    align-items: center; /* Horizontally center the content inside the form */
    width: 100%;
    max-width: 400px; /* Maximum width of the form */
    background-color: #ffffff; /* White background for the form */
    color: #111;
    padding: 30px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for the form */
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Form styling */
form {
    width: 100%;
    max-width: 400px; /* Maximum width of the form */
    background-color: #ffffff; /* White background for the form */
    padding: 30px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for the form */
}

.form-group {
    margin-bottom: 20px;
}



label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
/*
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
*/
button {
    width: 100%;
    padding: 10px;
    background-color: #E74C3C;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #E74C3C;
}

p {
    text-align: center;
    font-size: 0.9rem;
}

p a {
    color: #3498db; /* Link color */
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

.password-container {
    position: relative;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
}

.eye-icon:hover {
    color: #333;
}



