body {
    background: #f8fafc;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto;
}

.py-8
{
    padding-top: 0px;
    padding-bottom: 0px;
}

/* subtle background */
.bg-layer {
    position: fixed;
    inset: 0;
    /* background-image: radial-gradient(#e2e8f0 1px, transparent 1px); */
    background-size: 22px 22px;
    opacity: 0.6;
    pointer-events: none;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    padding-top: 0px;
    gap: 90px;
}

/* LEFT SIDE */
.left-info {
    max-width: 480px;
}

.left-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.left-title span {
    color: #4f46e5;
}

.left-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* FEATURE DESIGN */
.feature-grid {
    display: grid;
    gap: 14px;
}

.feature {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4f46e5, #818cf8);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #c7d2fe;
}

.icon {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #4f46e5;
    box-shadow: 0 0 0 5px rgba(79,70,229,0.10);
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
}

.feature-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* LOGIN CARD */
.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 22px;
}

.label {
    font-size: 13px;
    color: #334155;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

.input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
    background: #fff;
}

.btn {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79,70,229,0.2);
}

.link {
    color: #4f46e5;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

/* REMEMBER ME HORIZONTAL ALIGNMENT */
.remember-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 16px 0 20px !important;
}

.remember-label {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: #64748b !important;
    cursor: pointer !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.remember-checkbox {
    width: 16px !important;
    height: 16px !important;
    accent-color: #4f46e5 !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 16px;
}

.security-note {
    margin-top: 18px;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .auth-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }

    .left-info {
        display: none;
    }
}
