:root{

    --primary:#2D9C95;
    --secondary:#0F172A;
    --background:#F4F7FC;
    --white:#FFFFFF;
    --shadow:
        0 10px 30px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:
        "Segoe UI",
        sans-serif;
}

body{

    background:var(--background);

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
}

.login-container{

    width:1200px;
    max-width:95%;

    background:white;

    border-radius:30px;

    overflow:hidden;

    box-shadow:var(--shadow);

    display:grid;
    grid-template-columns:1fr 1fr;
}

.login-brand{

    background:
        linear-gradient(
            135deg,
            #0F172A,
            #1E293B
        );

    color:white;

    padding:70px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.login-brand img{

    width:250px;
    background:white;
    border-radius:20px;
    padding:15px;
    margin-bottom:30px;
}

.login-brand h1{

    font-size:42px;
    font-weight:700;
}

.login-brand p{

    margin-top:20px;
    opacity:.8;
}

.system-info{

    margin-top:50px;
}

.system-info div{

    margin-bottom:20px;
    font-size:18px;
}

.system-info i{

    color:var(--primary);
    margin-right:15px;
}

.login-card{

    padding:70px;
}

.login-card h2{

    font-size:36px;
    font-weight:700;
}

.login-card p{

    color:#64748B;
    margin-bottom:40px;
}

.form-control{

    height:55px;
    border-radius:15px;
}

.password-box{

    position:relative;
}

.password-box button{

    position:absolute;
    right:15px;
    top:15px;

    border:none;
    background:none;
}

.options{

    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
}

.options a{

    text-decoration:none;
    color:var(--primary);
}

.btn-login{

    width:100%;
    height:55px;

    border:none;
    border-radius:15px;

    background:var(--primary);
    color:white;

    font-size:18px;
    font-weight:600;

    transition:.3s;
}

.btn-login:hover{

    transform:translateY(-2px);

    box-shadow:
        0 10px 20px
        rgba(45,156,149,.3);
}

.footer-login{

    margin-top:50px;
    text-align:center;
    color:#94A3B8;
}

@media(max-width:992px){

    .login-container{

        grid-template-columns:1fr;
    }

    .login-brand{

        display:none;
    }

    .login-card{

        padding:40px;
    }
}