﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
/*    background: #f4f7fc;*/
    background: #fff;
    overflow-x: hidden;
}

.navbar {
    width: 100%;
    height: 90px;
    background: #d493ef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    border-bottom: 1px solid #ececec;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: #0b1437;
}

/*.logo-box {
    width: 55px;
    height: 55px;
    background: #2563eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37,99,235,.35);
}*/

.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

/*.logo-text,
.company-name {
    font-size: 22px;
    font-weight: 700;
    color: #0b1437;
}*/

.company-tagline {
    font-size: 12px;
    font-weight: 500;
    color: #4b0368;
    letter-spacing: 1px;
    margin-top: 4px;
    text-align: center;
    width: 100%;
    font-family: 'Outfit', sans-serif;
}

.main-container {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 50px 70px;
}

.left-side {
    flex: 1;
}

.hero-title {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 550;
    color: #0b132b;
    margin-bottom: 30px;
}

.hero-desc {
    max-width: 650px;
    font-size: 24px;
    line-height: 1.8;
    color: #5c677d;
    margin-bottom: 40px;
}

.illustration {
    width: 100%;
    max-width: 650px;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

    .illustration img {
        width: 100%;
        display: block;
    }

.features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    color: #334155;
}

    .feature i {
        color: #2563eb;
    }

.right-side {
    width: 520px;
}

.auth-card {
    background: #d493ef;
    padding: 42px;
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
    min-height: 930px;
}

.small-logo {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    background: #2563eb;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.welcome {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #0b132b;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #3b4a60;
    font-size: 20px;
    margin-bottom: 35px;
}

.tabs {
    display: flex;
/*    background: #f1f5f9;*/
    background: #fff;
    padding: 8px;
    border-radius: 18px;
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    height: 58px;
    border: none;
    outline: none;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: .3s;
}

    .tab-btn.active {
        background: #d493ef;
        color: #fff;
/*        box-shadow: 0 10px 25px rgba(37,99,235,.35);*/
    }

.input-box {
    width: 100%;
    height: 70px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    margin-bottom: 22px;
}

    .input-box i {
        color: #64748b;
        font-size: 20px;
        margin-right: 14px;
    }

    .input-box input {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: 18px;
    }

.options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #475569;
}

.forgot {
    text-decoration: none;
    color: #0b132b;
    font-weight: 600;
}

/* Password section */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 99;
    color: #666;
}

.password-wrapper input {
    padding-right: 50px;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

.main-btn {
    width: 100%;
    height: 72px;
    border: none;
    outline: none;
    border-radius: 18px;
    background: #fff;
    color: #0b132b;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    transition: .3s;
/*    box-shadow: 0 15px 35px rgba(37,99,235,.35);*/
}

    .main-btn:hover {
        transform: translateY(-2px);
    }

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 35px 0;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #d1d5db;
    }

.google-btn {
    width: 100%;
    height: 70px;
    border: 1px solid #d1d5db;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
}

    .google-btn img {
        width: 28px;
    }

.bottom-text {
    text-align: center;
    margin-top: 25px;
    color: #64748b;
    font-size: 18px;
}

    .bottom-text a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.footer {
    background: #fff;
    padding: 60px 70px;
/*    border-top: 1px solid #ececec;*/
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo-box {
    width: 45px;
    height: 45px;
    background: #2563eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
}

.footer-left p {
    max-width: 400px;
    color: #64748b;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

    .footer-links h3 {
        margin-bottom: 18px;
    }

    .footer-links a {
        display: block;
        margin-bottom: 12px;
        text-decoration: none;
        color: #64748b;
    }

.copyright {
    margin-top: 50px;
    border-top: 1px solid #ececec;
    padding-top: 28px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .3px;
}

/* =========================================
   RESPONSIVE FIX
========================================= */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* =========================
   LAPTOP / SMALL DESKTOP
========================= */

@media (max-width: 1200px) {

    .main-container {
        flex-direction: column;
        align-items: center;
        padding: 40px 30px;
        gap: 40px;
    }

    .left-side {
        width: 100%;
    }

    .right-side {
        width: 100%;
        max-width: 550px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-desc {
        max-width: 100%;
    }

    .illustration {
        max-width: 100%;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .navbar {
        padding: 0 25px;
    }

    .logo-text,
    .company-name {
        font-size: 24px;
    }

    .main-container {
        padding: 35px 25px;
    }

    .hero-title {
        font-size: 52px;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 20px;
        line-height: 1.7;
    }

    .feature {
        font-size: 18px;
    }

    .welcome {
        font-size: 42px;
    }

    .auth-card {
        padding: 34px;
    }

    .footer {
        padding: 50px 30px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        height: auto;
        padding: 18px 16px;
        gap: 10px;
    }

    .logo-section {
        gap: 10px;
    }

/*    .logo-box {
        width: 46px;
        height: 46px;
        font-size: 20px;
        border-radius: 14px;
    }*/

    .navbar-logo {
        width: 50px;
        height: 50px;
    }

    .logo-text,
    .company-name {
        font-size: 18px;
        line-height: 1.2;
    }

    .company-tagline {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .main-container {
        flex-direction: column;
        padding: 20px 14px;
        gap: 28px;
    }

    .left-side {
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-desc {
        font-size: 17px;
        line-height: 1.8;
        max-width: 100%;
    }

    .illustration {
        width: 100%;
        max-width: 100%;
        border-radius: 24px;
    }

        .illustration img {
            width: 100%;
            height: auto;
            display: block;
        }

    .features {
        gap: 14px;
    }

    .feature {
        font-size: 15px;
        line-height: 1.6;
        align-items: flex-start;
    }

    .right-side {
        width: 100%;
        max-width: 100%;
    }

    .auth-card {
        width: 100%;
        padding: 26px 18px;
        border-radius: 28px;
    }

    .small-logo {
        margin: 0 auto 20px;
    }

    .welcome {
        font-size: 30px;
        line-height: 1.25;
        text-align: center;
    }

    .subtitle {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }

    .tabs {
        width: 100%;
        padding: 6px;
        gap: 8px;
    }

    .tab-btn {
        height: 52px;
        font-size: 16px;
    }

    .input-box {
        height: 60px;
        padding: 0 16px;
    }

        .input-box input {
            font-size: 16px;
        }

    .options {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .remember {
        font-size: 14px;
    }

    .forgot {
        font-size: 14px;
    }

    .main-btn {
        height: 62px;
        font-size: 18px;
        border-radius: 16px;
    }

    .google-btn {
        height: 60px;
        font-size: 15px;
        padding: 0 10px;
    }

        .google-btn img {
            width: 24px;
        }

    .bottom-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer {
        padding: 40px 18px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

    .footer-links {
        flex-direction: column;
        gap: 25px;
    }

    .footer-logo-text {
        font-size: 24px;
    }

    .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .welcome {
        font-size: 26px;
    }

    .subtitle {
        font-size: 15px;
    }

    .tab-btn {
        font-size: 15px;
    }

    .main-btn {
        font-size: 17px;
    }

    .footer-logo-text {
        font-size: 22px;
    }

    .footer-left p {
        font-size: 15px;
    }
}