/* css/auth/login.css */

body {
            background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .login-card {
            width: 100%;
            max-width: 400px;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .card-header {
            background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
            color: white;
            text-align: center;
            padding: 20px;
        }
        .btn-login {
            background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
            border: none;
            border-radius: 999px;
            font-weight: 700;
            box-shadow: 0 12px 24px rgba(78,115,223,0.22);
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #5a7ef0 0%, #274fc9 100%);
            transform: translateY(-1px);
            box-shadow: 0 16px 30px rgba(78,115,223,0.28);
        }
