:root {
    --accent-blue: #00bcd4;
    --bg-dark: #050510;
    --card-bg: rgba(15, 15, 35, 0.8);
    --text-gray: #a0a0c0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #0a0a20 0%, #050510 100%);
}

.login-box {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agent-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-blue);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    box-sizing: border-box;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.1);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: var(--accent-blue);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.error {
    background: rgba(255, 82, 82, 0.1);
    color: #ff5252;
    font-size: 0.8rem;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 82, 82, 0.2);
}