*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{

    background:#eef2f7;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:24px;

}

/* ===========================
        MAIN CONTAINER
=========================== */

.container{

    width:min(1280px,100%);

    min-height:760px;

    background:#fff;

    border-radius:26px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    box-shadow:
        0 18px 50px rgba(0,0,0,.08);

}

/* ===========================
          LEFT PANEL
=========================== */

.left-panel{

    position:relative;

    overflow:hidden;

}

.hero-image{

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.45)
    );

}

.hero-content{

    position:absolute;

    inset:0;

    padding:50px;

    display:flex;

    flex-direction:column;

    color:#fff;

}

.hero-content h4{

    font-size:38px;

    font-weight:800;

}

.hero-content span{

    margin-top:4px;

    font-size:15px;

    letter-spacing:4px;

}

.bottom-text{

    margin-top:auto;

}

.bottom-text h1{

    font-size:58px;

    line-height:62px;

    font-weight:800;

    margin-bottom:20px;

}

.bottom-text p{

    width:420px;

    max-width:100%;

    font-size:20px;

    line-height:32px;

}

/* ===========================
          RIGHT PANEL
=========================== */

.right-panel{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:50px;

}

.login-card{

    width:100%;

    max-width:360px;

    text-align:center;

}

.logo{

    width:140px;

    margin-bottom:25px;

}

.login-card h2{

    font-size:30px;

    font-weight:800;

    color:#0f172a;

}

.subtitle{

    margin-top:15px;

    font-size:16px;

    line-height:28px;

    color:#64748b;

}

.google-btn{

    width:100%;

    height:58px;

    margin-top:34px;

    border:none;

    border-radius:14px;

    background:#2563eb;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    transition:.25s;

}

.google-btn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(37,99,235,.28);

}

.google-btn img{

    width:24px;

    background:#fff;

    border-radius:50%;

    padding:3px;

}

.divider{

    width:100%;

    height:1px;

    background:#e5e7eb;

    margin:28px 0;

}

.note{

    font-size:14px;

    line-height:24px;

    color:#64748b;

}

/* ===========================
         TABLETS
=========================== */

@media (max-width:1024px){

.container{

    grid-template-columns:1fr;

    min-height:auto;

}

.left-panel{

    height:360px;

}

.hero-content{

    padding:35px;

}

.bottom-text h1{

    font-size:44px;

    line-height:48px;

}

.bottom-text p{

    font-size:18px;

    line-height:28px;

}

.right-panel{

    padding:50px 30px;

}

}

/* ===========================
          MOBILE
=========================== */

@media (max-width:768px){

body{

    padding:0;

    background:#fff;

}

.container{

    border-radius:0;

    width:100%;

    min-height:100vh;

    box-shadow:none;

}

.left-panel{

    height:250px;

}

.hero-content{

    padding:24px;

}

.hero-content h4{

    font-size:28px;

}

.hero-content span{

    font-size:12px;

    letter-spacing:2px;

}

.bottom-text h1{

    font-size:32px;

    line-height:36px;

    margin-bottom:12px;

}

.bottom-text p{

    width:100%;

    font-size:15px;

    line-height:24px;

}

.right-panel{

    padding:35px 22px 45px;

}

.login-card{

    max-width:100%;

}

.logo{

    width:110px;

}

.login-card h2{

    font-size:24px;

}

.subtitle{

    font-size:15px;

    line-height:24px;

}

.google-btn{

    height:52px;

    font-size:15px;

}

.note{

    font-size:13px;

}

}

/* ===========================
      SMALL PHONES
=========================== */

@media (max-width:480px){

.left-panel{

    height:220px;

}

.hero-content{

    padding:18px;

}

.bottom-text h1{

    font-size:28px;

    line-height:32px;

}

.bottom-text p{

    font-size:14px;

    line-height:22px;

}

.right-panel{

    padding:28px 18px 36px;

}

.logo{

    width:95px;

}

.login-card h2{

    font-size:22px;

}

.subtitle{

    font-size:14px;

}

.google-btn{

    height:50px;

    border-radius:12px;

    font-size:14px;

}

}