﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    overflow: hidden;
}

.login-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
}

.left-panel {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 500px;
}

.logo {
    width: 218px;
    height: 60px;
    margin-bottom: 26px;
}

.title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    margin-bottom: 22px;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

    .input-group input {
        width: 100%;
        height: 50px;
        border-radius: 5px;
        border: none;
        padding: 0 44px 0 16px;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 16px;
        box-shadow: 0 0 10px 2px #00000040;
    }

    .input-group i {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #010052;
    }

.options {
    display: flex;
    justify-content: space-between;
    margin: 14px 0 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

    .options a {
        color: #000;
        text-decoration: none;
    }

.btn-login {
    width: 100%;
    height: 50px;
    background: #010052;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.or {
    text-align: center;
    margin: 18px 0;
    font-family: 'Space Grotesk', sans-serif;
}

.switch-link {
    display: block;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #010052;
    cursor: pointer;
    text-decoration: none;
}

.footer {
    margin-top: 24px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: #777;
}

/* RIGHT PANEL */
.right-panel {
    position: absolute;
    top: 50%;
    left: 72%;
    transform: translate(-50%, -50%);
    color: #fff;
    max-width: 520px;
}

.hello {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 60px;
}

.welcome {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 70px;
    font-weight: 700;
    margin: 12px 0;
}

.desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.hidden {
    display: none;
}

.mobile-group {
    display: flex;
    gap: 12px;
}

.country-code {
    width: 130px;
    height: 50px;
    border-radius: 5px;
    border: none;
    padding: 0 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    box-shadow: 0 0 10px 2px #00000040;
    background: #ffffff;
    cursor: pointer;
}

    .country-code option {
        font-size: 16px;
    }

/* LEFT PANEL FIX */
.left-panel {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%,-50%);
    width: 500px;
}

/* OTP CONTAINER FIX */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 26px 0 30px;
}

/* OTP INPUT FIX */
.otp-input {
    width: 60px;
    height: 60px;
    min-width: 60px;
    max-width: 60px;
    border-radius: 6px;
    border: none;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 0 10px 2px #00000040;
    outline: none;
    padding: 0;
}

/* REMOVE INPUT AUTO EXPAND */
.otp-input {
    flex: 0 0 auto;
}

/* OTP PANEL CENTER ALIGN */
.otp-panel {
    text-align: center;
}

    /* OTP TITLE */
    .otp-panel .title {
        text-align: center;
        width: 100%;
    }

    /* OTP SUBTITLE */
    .otp-panel .subtitle {
        text-align: center;
        width: 100%;
    }

.global-logo {
    width: 100%;
    text-align: center; /* center align */
    margin-bottom: 30px; /* logo आणि title मधला gap */
}

    .global-logo img {
        width: 200px;
    }

/* Resend Code same as switch-link */
.resend-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1a73e8; /* same blue tone */
    cursor: pointer;
    text-decoration: none;
}

    .resend-link:hover {
        text-decoration: underline;
    }

    /* Disabled state during timer */
    .resend-link[style*="pointer-events: none"] {
        color: #9aa0a6;
        cursor: default;
        text-decoration: none;
    }

.country-picker {
    position: relative;
    width: 110px;
    cursor: pointer;
}

.country-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

    .country-trigger img {
        width: 20px;
        height: 14px;
        object-fit: cover;
    }

.country-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 999;
}

    .country-options .option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        cursor: pointer;
    }

        .country-options .option:hover {
            background: #f1f1f1;
        }

    .country-options img {
        width: 20px;
        height: 14px;
    }

.country-code {
    min-width: 110px; /* 🔥 THIS FIXES IT */
    flex-shrink: 0; /* prevent collapse */
}

/* FORGOT PASSWORD DROPDOWN – FULL WIDTH */
.forgot-dropdown {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    padding: 0 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    box-shadow: 0 0 10px 2px #00000040;
    background: #ffffff;
    cursor: pointer;
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Dropdown arrow (custom) */
.forgot-dropdown {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23010052' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

    .forgot-dropdown option {
        font-size: 16px;
    }






