/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FULL PAGE BOTTOM SLIDE-IN */
.login-wrapper {
    opacity: 0;
    transform: translateY(50px);
    animation: pageSlideUp 0.7s ease-out forwards;
}

@keyframes pageSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BASE */
.shop365-body {
    font-family: "Inter", sans-serif;
    overflow: hidden; /* No scroll */
    background: #f3f4f6;
}

/* MAIN WRAPPER */
.login-wrapper {
    display: flex;
    height: 100vh;
}

/* LEFT SIDE (IMAGE PREVIEW) */
.left-side {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    inset: 0;
}

/* RIGHT SIDE (LOGIN CONTENT) */
.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-content {
    width: 100%;
    max-width: 360px;
}

/* LOGO */
.login-logo {
    height: 40px;
    margin-bottom: 10px;
}

/* TITLES */
.login-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #49be8f;
}

.login-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.login-slogan { 
    font-size: 13px; 
    color: #6b7280; 
    margin-top: -6px; 
    margin-bottom: 18px; 
    line-height: 1.45; 
}

.bi-lightning-charge-fill {
    color: #14b8a6;
}

/* INPUT GROUP */
.input-group {
    width: 100%;
    margin-bottom: 18px;
}

.input-group label {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.input-group input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 14px;
    color: #111827;
}

.input-group input:focus {
    border-color: #49be8f;
    outline: none;
}

/* LOGIN BUTTON */
.login-btn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: none;
    background: #49be8f;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 6px;
    letter-spacing: 1.0px;
}

.login-btn:hover {
    opacity: 0.7;
}

/* META TEXT */
.login-meta {
    margin-top: 14px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

/* FIXED FOOTER */
.login-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #374151;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .login-wrapper {
        flex-direction: column;
    }

    .login-logo {
        height: 30px;
    }

    .left-side img {
        height: 320px;
    }

    .right-side {
        padding: 20px;
    }
}