```css
/*====================================================
  SIGEX - STYLE.CSS
====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    height:100%;
    font-family:'Poppins',sans-serif;
    background:#eef2f7;
    color:#1f2937;
}

/*====================================================
LAYOUT
====================================================*/

.layout{
    display:flex;
    flex-direction:row;
    min-height:100vh;
}

/*====================================================
LOGIN (ESQUERDA)
====================================================*/

.left{

    width:430px;
    min-width:430px;

    background:#ffffff;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    padding:55px;

    box-shadow:8px 0 35px rgba(0,0,0,.08);

    z-index:10;

}

.login-card{

    width:100%;
    max-width:340px;

}

.logo{

    text-align:center;
    margin-bottom:25px;

}

.logo img{

    width:170px;
    max-width:100%;

}

.login-title{

    text-align:center;
    font-size:30px;
    color:#123f7c;
    font-weight:700;
    margin-bottom:8px;

}

.login-subtitle{

    text-align:center;
    color:#6b7280;
    font-size:14px;
    margin-bottom:35px;
    line-height:1.6;

}

.form-group{

    position:relative;
    margin-bottom:18px;

}

.form-control{

    width:100%;
    height:52px;

    border:1px solid #d8dee9;
    border-radius:10px;

    padding:0 48px 0 16px;

    font-size:15px;

    transition:.25s;

    background:#fff;

}

.form-control:focus{

    outline:none;

    border-color:#123f7c;

    box-shadow:0 0 0 4px rgba(18,63,124,.12);

}

.input-icon{

    position:absolute;

    right:18px;
    top:50%;

    transform:translateY(-50%);

    color:#7b8794;

    cursor:pointer;

}

.btn-acessar{

    width:100%;
    height:52px;

    border:none;
    border-radius:10px;

    background:#123f7c;

    color:#fff;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.btn-acessar:hover{

    background:#0f3366;

}

.links{

    margin-top:18px;

    display:flex;
    flex-direction:column;

    gap:10px;

}

.links a{

    color:#123f7c;

    text-decoration:none;

    font-size:13px;

    text-align:center;

}

.links a:hover{

    text-decoration:underline;

}

.login-footer{

    position:absolute;

    bottom:25px;

    left:25px;
    right:25px;

    text-align:center;

    color:#7b8794;

    font-size:12px;

}

/*====================================================
WALLPAPER (DIREITA)
====================================================*/

.right{

    flex:1;

    position:relative;

    background:url("img/wallpaper_sigex.jpg") center center no-repeat;

    background-size:cover;

    display:flex;

    align-items:center;

    padding:80px;

    overflow:hidden;

}

.right::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(18,63,124,.92),
        rgba(18,63,124,.65),
        rgba(18,63,124,.30)
    );

}

.right-content{

    position:relative;

    z-index:5;

    max-width:650px;

    color:#fff;

}

.badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#ff9800;

    color:#fff;

    font-size:12px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.right h1{

    font-size:52px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:20px;

}

.right p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

    opacity:.95;

}

.hero-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.hero-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:18px;

}

.hero-item i{

    color:#ffc107;

}

/*====================================================
RESPONSIVO
====================================================*/

@media(max-width:1024px){

.layout{

    display:block;

}

.left{

    width:100%;
    min-width:100%;

    min-height:100vh;

    box-shadow:none;

}

.right{

    display:none;

}

.login-card{

    max-width:420px;

}

}

@media(max-width:500px){

.left{

    padding:30px;

}

.logo img{

    width:145px;

}

.login-title{

    font-size:25px;

}

.login-subtitle{

    font-size:13px;

}

}
```
