/* Main CSS for Login Page */
body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 400px;
    width: 100%;
    padding: 15px;
}

.login-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 16px;
    height: auto;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.form-footer {
    margin-top: 15px;
    text-align: center;
}

.form-footer a {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #0056b3;
}

.alert {
    font-size: 14px;
    margin-bottom: 20px;
}

.alert .close {
    font-size: 18px;
    line-height: 1;
    color: #000;
    text-shadow: none;
    opacity: 0.5;
}

.alert .close:hover {
    opacity: 1;
}
