:root {
    --brand-teal: #003d4d;
    --accent-orange: #ff9800;
    --input-bg: #f4f7f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    display: flex;
    height: 100vh !important;
    background: #fff;
    overflow: hidden;
}

/* --- LEFT SIDE: PREMIUM COLLAGE --- */
.left-panel {
    flex: 0.45;
    background: radial-gradient(circle at center, #005d75 0%, var(--brand-teal) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 480px;
    overflow: hidden;
}

.logo-top {
    position: absolute;
    top: 24px;
    /*left: 45px;*/
    z-index: 20;
}

    .logo-top img {
        height: 60px;
        width: auto;
    }

.photo-stack {
    position: relative;
    width: 350px;
    height: 450px;
    margin-top: 40px;
}

.photo {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border: 2.5px solid rgba(255,255,255,0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-1 {
    width: 190px;
    height: 250px;
    bottom: 10px;
    left: -20px;
    z-index: 3;
    transform: rotate(-7deg);
}

.p-2 {
    width: 210px;
    height: 160px;
    top: 20px;
    right: -30px;
    z-index: 1;
    transform: rotate(10deg);
    filter: blur(1px);
}

.p-3 {
    width: 250px;
    height: 330px;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -45%);
    z-index: 2;
    border-width: 4px;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    filter: blur(0);
    border-color: var(--accent-orange);
}

.holiday-tag {
    position: absolute;
    bottom: 40px;
    left: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 12px;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 11px;
}

/* --- RIGHT SIDE: LOGIN UI --- */
.right-panel {
    flex: 0.55;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.mobile-brand {
    display: none;
    background: var(--brand-teal);
    padding: 18px 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-orange);
}

    .mobile-brand img {
        height: 42px;
        width: auto;
    }

.form-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 410px;
}

    .login-box h1 {
        font-size: 34px;
        font-weight: 800;
        color: var(--brand-teal);
        margin-bottom: 8px;
    }

    .login-box p {
        color: #64748b;
        margin-bottom: 16px;
        font-size: 15px;
    }

.input-wrap {
    position: relative;
    margin-bottom: 20px;
}

    .input-wrap i.icon-l {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #3b82f6;
        font-size: 18px;
    }

    .input-wrap input {
        width: 100% !important;
        height: 60px;
        padding: 0 55px;
        background: var(--input-bg);
        border: 2px solid transparent;
        border-radius: 14px;
        font-size: 16px;
        outline: none;
        transition: 0.3s;
    }

        .input-wrap input:focus {
            background: #fff;
            border-color: #3b82f6;
            box-shadow: 0 8px 20px rgba(59,130,246,0.08);
        }

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.eye-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    padding: 5px;
}

.btn-login {
    width: 100%;
    background: var(--accent-orange);
    color: white;
    height: 60px;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 24px rgba(255,152,0,0.35);
    transition: 0.3s;
    margin-top: 10px;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 30px rgba(255,152,0,0.45);
    }

.iti--separate-dial-code .iti__selected-flag {
    background-color: #f4f7f9 !important;
}

@media (max-width: 1024px) {
    body {
        flex-direction: column;
        overflow-y: auto;
    }

    .left-panel {
        display: none;
    }

    .mobile-brand {
        display: block;
    }

    .form-section {
        align-items: flex-start;
        padding-top: 60px;
    }

    .login-box {
        max-width: 100%;
    }

    .input-grid {
        grid-template-columns: 1fr;
        gap:1px;
    }
    .login-box h1 {
        font-size: 30px;
    }
    .reset-trn-pass{
        font-size: 19px !important;
    }
    .recover-pass{
        font-size:24px !important;
    }

    .mobile-brand img {
        height: 45px;
    }
    .form-section{
        padding:20px;
    }
}

.sweet-alert button {
    background-color: #ff8f00 !important;
}
