
/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ========================================
   BODY
======================================== */

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
}


/* ========================================
   MAIN CONTAINER
======================================== */

.page-container {
    width: 100%;
    max-width: 1212px;
    min-height: 614px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: 0 18px 18px 0;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15);
}


/* ========================================
   LEFT BLUE SECTION
======================================== */

.left-section {
    background: linear-gradient(
        180deg,
        #0fc0ed 0%,
        #007fc9 55%,
        #0561b4 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;
}


/* ========================================
   FORM CARD
======================================== */

.form-card {
    width: 100%;
    max-width: 403px;

    background: #ffffff;

    border-radius: 18px;

    padding: 46px 34px 34px;
}


/* ========================================
   FORM HEADING
======================================== */

.form-card h1 {
    font-family: 'Poppins', sans-serif;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.35;

    color: #080808;

    margin-bottom: 18px;
}


/* ========================================
   SUBTITLE
======================================== */

.form-subtitle {
    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    font-weight: 400;

    color: #111111;

    margin-bottom: 27px;
}


/* ========================================
   INPUT GROUP
======================================== */

.input-group {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;

    border: 1px solid #aaaaaa;

    border-radius: 30px;

    padding: 0 20px;

    margin-bottom: 27px;

    background: #ffffff;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}


/* ========================================
   INPUT ICON
======================================== */

.input-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 10px;
}

.input-icon svg {
    width: 23px;
    height: 23px;

    fill: #b8b8b8;
}


/* ========================================
   INPUT
======================================== */

.input-group input {
    width: 100%;
    min-width: 0;

    border: none;
    outline: none;

    background: transparent;

    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    font-weight: 400;

    color: #333333;
}

.input-group input::placeholder {
    color: #cccccc;
    opacity: 1;
}


/* INPUT FOCUS */

.input-group:focus-within {
    border-color: #0864c4;

    box-shadow:
        0 0 0 3px rgba(8, 100, 196, 0.10);
}


/* ========================================
   CONTINUE BUTTON
======================================== */

.continue-btn {
    width: 100%;
    height: 53px;

    border: none;
    border-radius: 30px;

    background: #0864c4;

    color: #ffffff;

    font-family: 'Poppins', sans-serif;

    font-size: 18px;
    font-weight: 400;

    cursor: pointer;

    transition: background 0.2s ease,
                transform 0.2s ease;
}


/* BUTTON HOVER */

.continue-btn:hover {
    background: #0755a7;
}


/* BUTTON CLICK */

.continue-btn:active {
    transform: scale(0.98);
}


/* ========================================
   RIGHT LOGO SECTION
======================================== */

.right-section {
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;
}


/* ========================================
   DARSHINI FASHIONS LOGO
======================================== */

.brand-logo {
    font-family: 'Dancing Script', cursive;

    font-size: clamp(38px, 4vw, 60px);

    font-weight: 500;

    color: #0066c7;

    text-align: center;

    white-space: nowrap;

    letter-spacing: 1px;

    /* Remove outlined effect */
    -webkit-text-stroke: 0;

    text-shadow: none;
}


/* ========================================
   TABLET RESPONSIVE
======================================== */

@media (max-width: 900px) {

    body {
        padding: 20px;
    }

    .page-container {
        min-height: 560px;
    }

    .left-section {
        padding: 25px;
    }

    .right-section {
        padding: 20px;
    }

    .form-card {
        padding: 35px 25px 28px;
    }

    .form-card h1 {
        font-size: 22px;
    }

    .brand-logo {
        font-size: clamp(32px, 4vw, 48px);
    }

}


/* ========================================
   MOBILE RESPONSIVE
======================================== */

@media (max-width: 650px) {

    body {
        padding: 0;

        align-items: stretch;

        min-height: 100vh;
    }

    .page-container {
        width: 100%;
        min-height: 100vh;

        display: flex;
        flex-direction: column;

        border-radius: 0;

        box-shadow: none;
    }


    /* BLUE SECTION */

    .left-section {
        width: 100%;

        min-height: auto;

        padding: 40px 20px;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* FORM CARD */

    .form-card {
        width: 100%;
        max-width: 430px;

        padding: 35px 25px 30px;

        border-radius: 18px;
    }

    .form-card h1 {
        font-size: 23px;
    }

    .form-subtitle {
        font-size: 15px;
    }

    .input-group {
        height: 54px;

        padding: 0 18px;

        margin-bottom: 22px;
    }

    .input-group input {
        font-size: 15px;
    }

    .continue-btn {
        height: 53px;

        font-size: 17px;
    }


    /* LOGO SECTION */

    .right-section {
        width: 100%;

        min-height: 220px;

        padding: 35px 20px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-logo {
        font-size: clamp(35px, 9vw, 52px);

        white-space: normal;

        line-height: 1.2;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .left-section {
        padding: 25px 15px;
    }

    .form-card {
        padding: 28px 20px 25px;
    }

    .form-card h1 {
        font-size: 21px;
    }

    .form-subtitle {
        margin-bottom: 22px;
    }

    .input-group {
        height: 50px;

        padding: 0 15px;
    }

    .continue-btn {
        height: 50px;
    }

    .right-section {
        min-height: 180px;
    }

    .brand-logo {
        font-size: 34px;
    }

}


/* ========================================
   ACCESSIBILITY
======================================== */

button:focus-visible,
input:focus-visible {
    outline: 2px solid #0864c4;
    outline-offset: 3px;
}