﻿body {
    background-color: #f8f9fa;
}

.login-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.navbar {
    background-color: wheat;
}

.navbar-brand {
    color: green;
}

.login-container {
    background: wheat;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}


.login-header h2 {
    color: #212529;
}

.form-group label {
    color: #495057;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    border: 1px solid #dee2e6;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

    .form-group input[type="text"]:focus,
    .form-group input[type="password"]:focus {
        outline: none;
        border-color: #0d6efd;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    }


.remember-me-group input[type="checkbox"] {
    accent-color: #0d6efd;
}

.remember-me-group label {
    color: #6c757d;
}

.btn-login {
    color: white;
    background: #0d6efd;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .btn-login:hover {
        background-color: #0b5ed7;
        box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
    }

    .btn-login:active {
        background-color: #0a58ca;
    }

.error-message {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
}
