.login-bg {
    position: fixed;
    inset: 0;
    z-index: 0;

    background-image: url('/images/login-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(1px) saturate(1);
    transform: scale(1.12);
}

.login-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 12, 40, 0.35);
}

.login-page {
    position: relative;
    z-index: 1;

    min-height: 100vh;
    width: 100vw;

    display: flex;
    align-items: center;
    justify-content: center;
}



.login-card {
    width: 520px;
    padding: 64px 52px;

    background: rgba(255, 255, 255, 0.93);
    border-radius: 28px;

    box-shadow:
            0 30px 80px rgba(0,0,0,0.25),
            0 12px 30px rgba(120,100,255,0.25);

    backdrop-filter: blur(8px);
    text-align: center;
}


.login-logo {
    width: 360px;
    margin-bottom: 36px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}



.google-btn {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 10px;
    border: none;

    background: #6f5bff;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: transform .15s ease, box-shadow .15s ease;
}

.google-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(123,108,255,0.55);
}


.google-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(123,108,255,0.55);
}

.google-icon {
    width: 18px;
    height: 18px;
}

