.login-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    padding: 60px 20px;
}

.login-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.login-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.login-modal {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    background: #1e1e2f;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
}

.login-modal h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.login-modal p {
    color: #a1a1b5;
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.login-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #3f3f5a;
    border-radius: 4px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.login-btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-btn-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.login-btn-icon svg {
    width: 20px;
    height: 20px;
}

.another-way {
    display: block;
    margin-top: 24px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.login-legal {
    margin-top: 32px;
    font-size: 0.82rem;
    color: #a1a1b5;
    line-height: 1.6;
}

.login-legal a {
    color: #fff;
    text-decoration: none;
}

.login-legal a:hover {
    text-decoration: underline;
}

.business-signup {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #3f3f5a;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.login-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 100;
}

.login-logo img {
    height: 36px;
}

.login-footer-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
}

.login-footer-nav a {
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.login-footer-nav a:hover {
    opacity: 1;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}


@media (max-width: 768px) {
    .login-wrapper {
        padding: 40px 20px 80px;
    }

    .login-logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .login-modal {
        padding: 32px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: #1e1e2f;
        border-radius: 12px;
    }

    .login-modal h1 {
        font-size: 1.5rem;
    }

    .login-footer-nav {
        position: relative;
        bottom: 0;
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .login-modal h1 {
        font-size: 1.35rem;
    }

    .login-btn {
        font-size: 0.9rem;
    }

    .login-footer-nav {
        font-size: 0.75rem;
    }
}