/* Login Page Specific Styles */
.login-container {
    width: 100%;
    max-width: 450px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container header {
    margin-bottom: 20px;
}

.login-container #logo {
    max-width: 120px; /* Reduced logo size */
    height: auto;
}

.login-container h1 {
    font-size: 1.6rem;
    color: #333;
    margin-top: 15px;
}

.login-form-container {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.login-form-container h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.5rem;
    border-bottom: 2px solid #0779e4;
    padding-bottom: 10px;
    display: inline-block;
}

.login-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.input-with-icon input {
    padding-left: 35px;
    width: 100%;
    height: 45px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.input-with-icon input:focus {
    border-color: #0779e4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(7, 121, 228, 0.25);
}

.login-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 20px;
    background-color: #0779e4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-form button:hover {
    background-color: #0568bf;
}

.login-form button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.error-message {
    margin-top: 15px;
    color: #dc3545;
    font-weight: bold;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
}

.login-container footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}