﻿/* Extracted from views\login.php */

body {
        background: url('assets/img/silk_road_hero.png') no-repeat center center fixed !important;
        background-size: cover !important;
        margin: 0;
        height: 100vh;
        overflow: hidden;
        font-family: 'Cinzel', serif;
    }

    .login-overlay {
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .login-card {
        width: 400px;
        background: rgba(20, 20, 30, 0.75);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 215, 0, 0.3);
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 40px rgba(255,215,0,0.05);
        text-align: center;
        animation: cardFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes cardFadeIn {
        from { opacity: 0; transform: translateY(30px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .login-card h2 {
        font-size: 28px;
        color: #ffd700;
        margin-bottom: 30px;
        letter-spacing: 3px;
        text-transform: uppercase;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }

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

    .form-group label {
        display: block;
        color: #aaa;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .form-group input {
        width: 100%;
        background: rgba(0,0,0,0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 15px;
        color: #fff;
        border-radius: 4px;
        font-family: inherit;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .form-group input:focus {
        outline: none;
        border-color: #ffd700;
        background: rgba(0,0,0,0.6);
        box-shadow: 0 0 10px rgba(255,215,0,0.2);
    }

    .login-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
        color: #fff;
        border: 1px solid #ffd700;
        border-radius: 4px;
        font-family: inherit;
        font-weight: bold;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
        filter: brightness(1.2);
    }

    .login-footer {
        margin-top: 30px;
        font-size: 14px;
        color: #888;
    }

    .login-footer a {
        color: #ffd700;
        text-decoration: none;
        transition: 0.3s;
    }

    .login-footer a:hover {
        text-decoration: underline;
        text-shadow: 0 0 5px #ffd700;
    }

    .error-msg {
        background: rgba(244, 67, 54, 0.2);
        border: 1px solid #f44336;
        color: #ff8a80;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .ok-msg {
        background: rgba(76, 175, 80, 0.2);
        border: 1px solid #4caf50;
        color: #b9f6ca;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 20px;
        font-size: 14px;
    }
