﻿body.login-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #070a12;
}

    body.login-page .login-layout,
    body.login-page .main-area,
    body.login-page .content-inner {
        width: 100%;
        min-width: 100%;
        min-height: 100vh;
        margin: 0 !important;
        padding: 0 !important;
    }

    body.login-page .ld-login-page {
        width: 100vw;
        min-height: 100vh;
        margin: 0;
    }

.ld-login-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(255, 193, 7, .20), transparent 32%), radial-gradient(circle at 80% 15%, rgba(239, 68, 68, .18), transparent 30%), radial-gradient(circle at 50% 90%, rgba(59, 130, 246, .14), transparent 35%), linear-gradient(135deg, #070a12 0%, #111827 45%, #070a12 100%);
}

    .ld-login-page::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
        background-size: 46px 46px;
        mask-image: radial-gradient(circle at center, black, transparent 75%);
        pointer-events: none;
    }

.ld-login-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: .75;
    animation: ldFloat 7s ease-in-out infinite;
}

.ld-login-orb-one {
    width: 220px;
    height: 220px;
    left: -70px;
    top: 12%;
    background: linear-gradient(135deg, rgba(251, 191, 36, .28), rgba(239, 68, 68, .12));
}

.ld-login-orb-two {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: 8%;
    background: linear-gradient(135deg, rgba(59, 130, 246, .20), rgba(168, 85, 247, .18));
    animation-delay: -2s;
}

@keyframes ldFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.04);
    }
}

.ld-login-card {
    width: 100%;
    max-width: 430px;
    position: relative;
    z-index: 2;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
    box-shadow: 0 28px 80px rgba(0,0,0,.42);
    backdrop-filter: blur(22px);
    overflow: hidden;
}

    .ld-login-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 45%, rgba(251,191,36,.08));
        pointer-events: none;
    }

.ld-login-content {
    position: relative;
    z-index: 2;
}

.ld-login-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.ld-login-logo {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    padding: 8px;
    object-fit: cover;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 16px 35px rgba(0,0,0,.28);
}

.ld-login-title {
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .4px;
    margin-bottom: 6px;
}

.ld-login-subtitle {
    color: rgba(255,255,255,.58);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
}

.ld-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ld-login-field {
    position: relative;
}

.ld-login-label {
    display: block;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ld-login-input-wrap {
    position: relative;
}

.ld-login-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.50);
    font-size: 18px;
    z-index: 2;
}

.ld-login-input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 0 18px 0 48px;
    color: #ffffff;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    background: rgba(2, 6, 23, .36);
    transition: .22s ease;
}

    .ld-login-input::placeholder {
        color: rgba(255,255,255,.32);
    }

    .ld-login-input:focus {
        border-color: rgba(251, 191, 36, .52);
        background: rgba(2, 6, 23, .52);
        box-shadow: 0 0 0 4px rgba(251, 191, 36, .10);
    }

.ld-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
}

.ld-login-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

    .ld-login-check input {
        width: 16px;
        height: 16px;
        accent-color: #fbbf24;
    }

.ld-login-link {
    color: #fbbf24;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

    .ld-login-link:hover {
        color: #fde68a;
    }

.ld-login-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 18px;
    color: #1f1300;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .3px;
    margin-top: 6px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 18px 35px rgba(249, 115, 22, .26);
    transition: .22s ease;
}

    .ld-login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 42px rgba(249, 115, 22, .34);
        filter: brightness(1.04);
    }

    .ld-login-btn:active {
        transform: translateY(0);
    }

.ld-login-footer {
    margin-top: 24px;
    text-align: center;
    color: rgba(255,255,255,.42);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 576px) {
    body.login-page {
        overflow-y: auto;
    }

    .ld-login-page {
        padding: 16px;
    }

    .ld-login-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .ld-login-title {
        font-size: 24px;
    }

    .ld-login-logo {
        width: 82px;
        height: 82px;
        border-radius: 24px;
    }

    .ld-login-options {
        align-items: flex-start;
        flex-direction: column;
    }
}
