body {
    background:
        linear-gradient(
            135deg,
            #f7f5fb 0%,
            #f3efff 100%
        );

    min-height: 85dvh;

    font-family: 'Inter', sans-serif;

    overflow-x: hidden;
}

/* =========================
   WRAPPER
========================== */

.login-wrapper {
    height: 85vh;
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.login-container {
    max-height: 90vh;
}

.login-container {

    width: 100%;
    max-width: 1250px;

    background:
        rgba(255,255,255,0.88);

    backdrop-filter: blur(10px);

    border-radius: 24px;

    overflow: hidden;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.08),
        0 2px 10px rgba(0,0,0,0.04);
}

/* =========================
   LEFT SIDE
========================== */

.login-left {
    position: relative;
    overflow: hidden;
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    padding-top: 48px;
}

.background-illustration {

    position: absolute;

    inset: 15px;

    width: 95%;
    height: 95%;

    object-fit: cover;

    opacity: 0.78;

    filter:
        blur(0.3px)
        saturate(1.1);

    transform: scale(1.05);

    user-select: none;
    pointer-events: none;
}

.brand-overlay {

    position: relative;

    z-index: 2;

    padding: 0 30px;

    font-size: 42px;
    font-weight: 800;

    color: #111111;

    letter-spacing: -2px;
}

.brand-overlay span {
    color: #a502a8;
}

/* =========================
   RIGHT SIDE
========================== */

.login-right {

    position: relative;

    padding: 48px;

    background:
        rgba(255,255,255,0.94);

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

.login-card {

    width: 100%;
    max-width: 420px;

    position: relative;
    z-index: 2;
}

.login-heading {

    font-size: 32px;
    font-weight: 800;

    color: #18181b;

    margin-bottom: 10px;

    letter-spacing: -1px;
}

.login-description {

    color: #71717a;

    margin-bottom: 32px;

    font-size: 15px;
}

/* =========================
   FORM
========================== */

.form-group {
    margin-bottom: 22px;
}

.form-label {

    display: block;

    margin-bottom: 8px;

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

    color: #27272a;
}

.form-control {

    width: 100%;
    height: 50px;

    border-radius: 12px;

    border: 1px solid #e4e4e7;

    background: #ffffff;

    padding: 0 18px;

    font-size: 15px;

    transition: all 0.2s ease;

    box-shadow: none !important;
}

.form-control:focus {

    border-color: #a502a8;

    box-shadow:
        0 0 0 4px rgba(165,2,168,0.12) !important;
}

.password-row {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 10px;
}

.show-password {

    color: #71717a;

    font-size: 13px;
}

.forgot-link {

    color: #a502a8;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.forgot-link:hover {
    color: #8b028d;
}

/* =========================
   TRUST DEVICE CHECKBOX
========================== */

.trust-device-row {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 22px;

    font-size: 13px;
    color: #71717a;
}

/* =========================
   BUTTON
========================== */

.login-btn {

    width: 100%;
    height: 50px;

    border: none;
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #c026d3 0%,
            #a502a8 100%
        );

    color: white;

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

    margin-top: 10px;

    transition: all 0.25s ease;

    box-shadow:
        0 10px 30px rgba(165,2,168,0.25);
}

.login-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 14px 40px rgba(165,2,168,0.35);
}

/* =========================
   RESPONSIVE
========================== */

@media (max-width: 1100px) {

    .login-container {
        grid-template-columns: 1fr;
    }

    .login-left {
        display: none;
    }

    .login-right {
        padding: 36px 24px;
    }

    .login-heading {
        font-size: 28px;
    }

    .login-wrapper {
        padding: 16px;
    }
}

.welcome-block {
    position: relative;
    z-index: 2;

    padding: 0 30px;
    margin-top: 10px;

    max-width: 360px;
}

.welcome-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 14px;
    color: rgba(17, 17, 17, 0.65);
    line-height: 1.5;
}

.left-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 18px;

  padding-left: 48px;
}
