/* Login Page Styles */
* {
    font-family: 'Noto Sans Georgian', sans-serif;
}

body {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(39, 39, 205, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(39, 39, 205, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(39, 39, 205, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.logo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-header img {
    height: 50px;
    margin-bottom: 1rem;
}

.logo-header h4 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.logo-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2.5rem 2rem;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-danger {
    background-color: #fee;
    color: #c33;
}

.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #2727CD;
    box-shadow: 0 0 0 3px rgba(39, 39, 205, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.btn-primary {
    background: #2727CD;
    border: none;
    border-radius: 10px;
    padding: 0.875rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1e1e9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 39, 205, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.footer-note {
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 2rem;
    line-height: 1.6;
}
