@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #004AAD;
    --primary-red: #FF3131;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(30, 30, 30, 0.6);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Section */
.left-side {
    flex: 1;
    background: url('/assets/img/bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.left-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 80%, var(--dark-bg));
}

/* Right Section */
.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);
    padding: 2rem;
}

.card {
    background: white;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container svg {
    width: 180px;
    height: auto;
}

.welcome-text {
    margin-bottom: 2rem;
    color: black;
}

.welcome-text h1 {
    color: black;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.welcome-text p {
    color: black;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--primary-blue), #003a8c);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.5);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .left-side {
        display: none;
    }

    .right-side {
        flex: 1;
        background: radial-gradient(circle at top right, #1a1a1a, #0a0a0a);
    }

    body {
        overflow: auto;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 2rem 1.5rem;
    }

    .welcome-text h1 {
        font-size: 1.5rem;
    }
}