*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    background:#f5f7fb;
}

.auth-container{
    display:flex;
    min-height:100vh;
}

.left-panel{
    flex:1;
    background:
    linear-gradient(
    135deg,
    rgba(79,70,229,0.95),
    rgba(124,58,237,0.95)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1200');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.overlay{
    color:white;
    max-width:450px;
}

.overlay h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.overlay p{
    font-size:18px;
    line-height:1.7;
    opacity:0.95;
}

.right-panel{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    background:white;
}

.auth-card{
    width:100%;
    max-width:420px;
}

.auth-card h2{
    font-size:36px;
    margin-bottom:10px;
    color:#222;
}

.subtitle{
    color:#666;
    margin-bottom:30px;
}

.auth-card input,
.auth-card select{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:none;
    background:#f3f4f6;
    border-radius:14px;
    outline:none;
    font-size:15px;
}

.auth-card input:focus,
.auth-card select:focus{
    border:2px solid #4f46e5;
    background:white;
}

.auth-card button{
    width:100%;
    padding:16px;
    border:none;
    background:#4f46e5;
    color:white;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.auth-card button:hover{
    background:#4338ca;
    transform:translateY(-2px);
}

.bottom-link{
    margin-top:20px;
    text-align:center;
    color:#666;
}

.bottom-link a{
    color:#4f46e5;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:900px){

    .left-panel{
        display:none;
    }

    .right-panel{
        width:100%;
    }
}