
/* Styles specifically for the login form */
.form-container {
    max-width: 400px;
    margin: 0 auto; /* Center the form */
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.form-container h1 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.form-container p {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.form-container input[type="text"],
.form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
/* Success message styling */
.alert-success {
    color: #155724; /* Dark green text color */
    background-color: #d4edda; /* Light green background */
    border: 1px solid #c3e6cb; /* Slightly darker green border */
    padding: 10px; /* Padding around the text */
    margin-bottom: 15px; /* Space below the message box */
    border-radius: 4px; /* Rounded corners */
    text-align: center; /* Center the text */
}


.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.form-container button:hover {
    background-color: #0056b3;
}

/* Error message styling */
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
}

/* Link styling in the form */
.form-container a {
    color: #007bff;
    text-decoration: none;
}

.form-container a:hover {
    text-decoration: underline;
}
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input[type="password"] {
    width: 100%;
    padding-right: 40px; /* Adjust to make space for the icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #007bff;
}

