﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #97e3fd;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}*/

/* Main Container */
/*.container {
    width: 100%;
    max-width: 1100px;
    height: 520px;*/ /* 🔥 yaha height control ho rahi hai */
/*background: #ffffff;
    display: flex;
    overflow: hidden;
}*/

/* ✅ LEFT SIDE 60% */
/*.left {
    flex: 55%;
    background: #f5f9ff;
    padding: 0;
}

    .left img {
        width: 100%;
        height: 600px;*/ /* 🔥 important */

/*}*/

/* ✅ RIGHT SIDE 40% */
/*.right {
    flex: 45%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-box {
    width: 100%;
    max-width: 380px;
}

    .form-box h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #333;
    }

    .form-box p {
        color: #777;
        margin-bottom: 30px;
    }

.input-field {
    margin-bottom: 20px;
}

    .input-field label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 500;
    }

.textbox {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
    height:45px;
}

    .textbox:focus {
        border-color: #667eea;
        box-shadow: 0 0 8px rgba(102,126,234,0.3);
        outline: none;
    }

.btn {
    width: 40%;
    padding: 14px;
    background: #0195f7;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn:hover {
        opacity: 0.9;
    }

.signin-link {
    margin-top: 25px;
    font-size: 14px;
}

    .signin-link a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
    }

.mobile-header {
    display: none;
}*/
/* 📱 Tablet */
/*@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .right {
        flex: 100%;
        padding: 40px;
        
    }
}

@media (max-width: 768px) {

    html, body {
        margin: 0;
        padding: 0;
        min-height:auto;
        height:auto;*/ /* 🔥 sirf top-bottom 10px */
/*}

    body {
        display: block;*/ /* flex hata do mobile me */
/*background: #97e3fd;*/

/* optional */
/*}

    .container {
        width: 100vw;
        max-width: 100%;
        height: auto;
        margin: 0;*/ /* 🔥 left-right gap remove */
/*}

    .left {
        display: none;*/ /* image hide */
/*}

    .right {
        padding: 40px 20px 0 20px;*/
/* 🔥 sirf upar se padding */
/*}

    .form-box {
        
        max-width: 100%;
    }
    .mobile-header {
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }

        .mobile-header img {
            width: 70px;
            margin-bottom: 10px;
        }

        .mobile-header h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }
}*/
/* ===============================
   GLOBAL RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* ===============================
   BODY
================================= */
body {
    background: #97e3fd;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* ===============================
   MAIN CONTAINER
================================= */
.container {
    width: 100%;
    max-width: 1100px;
    height: 520px;
    background: #ffffff;
    display: flex;
    overflow: hidden;
}

/* ===============================
   LEFT SIDE (55%)
================================= */
.left {
    flex: 55%;
    background: #F5F9FF;
}

    .left img {
        width: 100%;
        height: 520px;
    }

/* ===============================
   RIGHT SIDE (45%)
================================= */
.right {
    flex: 45%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-box {
    width: 100%;
    max-width: 380px;
}

    /* Headings */
    .form-box h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #333;
    }

    .form-box p {
        color: #777;
        margin-bottom: 30px;
    }

/* Input Fields */
.input-field {
    margin-bottom: 10px;
}

    .input-field label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 500;
    }

    .input-field span {
        font-size: 13px;
        margin-left: 5px;
        font-weight: 500;
    }

.textbox {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

    .textbox:focus {
        border-color: #0195f7;
        box-shadow: 0 0 6px rgba(1,149,247,0.3);
        outline: none;
    }

/* Button */
.btn {
    width: 50%;
    padding: 10px 14px;
    background: #0195f7;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 700;
}

    .btn:hover {
        opacity: 0.9;
    }

/* Signin Link */
.signin-link {
    margin-top: 25px;
    font-size: 14px;
}

    .signin-link a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
    }

/* Mobile Header (Hidden Desktop) */
.mobile-header {
    display: none;
}

/* ===============================
   TABLET (<= 992px)
================================= */
@media (max-width: 992px) {

    .container {
        flex-direction: column;
        height: auto;
    }

    .left {
        height: 250px;
    }

    .right {
        padding: 40px;
    }
}

/* ===============================
   MOBILE (<= 768px)
================================= */
@media (max-width: 768px) {

    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        background: #ddd;
    }

    body {
        display: block;
    }

    .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* 🔥 content upar */
        /*        background: #d1d3f7;*/
        background: linear-gradient(rgb(190, 171, 167, 0.80), rgba(209, 211, 247, 0.9)), url('../Content/Images/ChatGPT Image Feb 26, 2026, 11_08_48 AM.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        margin-top: 0px;
        height: 680px;
    }

    .left {
        display: none;
    }

    .right {
        padding: 0 20px; /* sirf upar gap */
    }

    .form-box {
        max-width: 100%;
        margin-top: 20px;
        font-weight: bolder;
    }

    /* Mobile Header Visible */
    .mobile-header {
        display: block;
        text-align: center;
        margin-bottom: 55px;
    }

        .mobile-header img {
            width: 130px;
            margin-top: -30px;
        }


    .textbox {
        border:none;
        background:transparent;
        border-bottom:2px solid #3b71a1;
        box-shadow:none;
        border-radius:0px;

    }

    .textbox::placeholder{
        color:#000;
        font-weight:bold;
    }

        .textbox:focus {
            box-shadow: none;
            border: none;
            border-bottom: 2px solid #3b71a1;
        }

    .mobile-header h3 {
        font-size: 18px;
        font-weight: 600;
    }

    /* Button Full Width on Mobile */
    .btn {
        width: 100%;
    }
}
