@import url("variables.css");

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(135deg,#1e3a5f 0%,#294b73 100%);

    min-height:100vh;

}

.login-container{

    display:flex;

    min-height:100vh;

}

.login-left{

    flex:1;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px;

}

.brand{

    max-width:520px;

}

.logo{

    width:280px;

    margin-bottom:35px;

}

.brand h1{

    font-size:56px;

    font-weight:700;

    margin-bottom:10px;

}

.tagline{

    font-size:26px;

    line-height:1.6;

    opacity:.95;

    margin-bottom:45px;

}

.features{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.feature{

    font-size:18px;

    padding-left:8px;

}

.login-right{

    width:460px;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px;

}

.login-card{

    width:100%;

}

.login-card h2{

    font-size:34px;

    color:#1e3a5f;

    margin-bottom:8px;

}

.login-text{

    color:#777;

    margin-bottom:35px;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.form-group input{

    width:100%;

    height:56px;

    border:1px solid #dcdcdc;

    border-radius:12px;

    padding:0 18px;

    font-size:16px;

    transition:.25s;

}

.form-group input:focus{

    outline:none;

    border-color:#1e3a5f;

    box-shadow:0 0 0 4px rgba(30,58,95,.15);

}

.login-button{

    width:100%;

    height:56px;

    border:none;

    border-radius:12px;

    background:#1e3a5f;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.login-button:hover{

    background:#162b45;
    transform:translateY(-2px);
    transition:.25s;

}

.copyright{

    text-align:center;

    margin-top:30px;

    color:#888;

    font-size:13px;

}