*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Sora',sans-serif;
}

body{
    background:#F8FAFC;
    height:100vh;
}

.container{
    display:flex;
    height:100vh;
}

.left{
    width:50%;
    background:#2563EB;
    color:white;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:60px;
    text-align:center;
}

.logo{
    width:90px;
    height:90px;
    background:white;
    color:#2563EB;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    margin-bottom:25px;
}

.left h1{
    font-size:42px;
    margin-bottom:15px;
}

.left p{
    max-width:420px;
    line-height:1.8;
    opacity:.9;
}

.right{
    width:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

.login-card{

    width:420px;
    background:white;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.login-card h2{
    color:#111827;
    margin-bottom:10px;
}

.subtitle{
    color:#6B7280;
    margin-bottom:30px;
}

label{
    display:block;
    margin-bottom:8px;
    margin-top:18px;
    font-weight:600;
}

input{

    width:100%;
    padding:15px;

    border:1px solid #D1D5DB;
    border-radius:10px;

    outline:none;
    font-size:15px;

    transition:.3s;
}

input:focus{

    border-color:#2563EB;

}

button{

    width:100%;
    margin-top:30px;

    padding:15px;

    border:none;

    background:#2563EB;

    color:white;

    font-size:16px;
    font-weight:600;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;
}

button:hover{

    background:#1E4FD7;

}

.bottom-text{

    margin-top:25px;

    text-align:center;

    color:#6B7280;

}

.bottom-text a{

    color:#2563EB;
    text-decoration:none;
    font-weight:600;

}

@media(max-width:900px){

.container{

flex-direction:column;

}

.left{

width:100%;
height:35vh;

}

.right{

width:100%;
height:65vh;

}

.login-card{

width:90%;

}

.left h1{

font-size:34px;

}

}