 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Inter",sans-serif;
}

body{

    background:#eef3f8;

}

.login{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px;

}

.login_caixa{

    width:100%;
    max-width:1100px;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    display:flex;

    box-shadow:
    0 15px 60px rgba(0,0,0,.12);

}

.lado_esquerdo{

    width:45%; 

    background: linear-gradient(135deg, #ff8a33 0%, #ff6b00 50%, #e65c00 100%);

    color: rgba(255,255,255,.88);

    padding:70px;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.logo{

    margin-bottom:35px;

}

.logo img{

    width:220px;

}

.lado_esquerdo h1{

    font-size:42px;

    line-height:1.2;

    margin-bottom:20px;

    font-weight:800;

}

.lado_esquerdo p{

    font-size:17px;

    line-height:30px;

    opacity:.95;

}

.lado_direito{

    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:70px;

}

form{

    width:100%;
    max-width:420px;

}

form h2{

    font-size:36px;

    color:#111827;

    margin-bottom:10px;

}

form span{

    display:block;

    color:#6b7280;

    margin-bottom:40px;

    line-height:26px;

}

.campo{

    height:60px;

    border:1px solid #dbe4ee;

    border-radius:14px;

    display:flex;

    align-items:center;

    padding:0 22px;

    margin-bottom:30px;

    transition:.25s;

}

.campo:focus-within{

    border-color:#ff6b00;

    box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);

}

.campo i{

    color:#2563eb;

    font-size:18px;

    margin-right:15px;

}

.campo input{

    flex:1;

    border:none;

    outline:none;

    font-size:16px;

    background:none;

}

button{

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    background: linear-gradient(135deg, #ff8a33 0%, #ff6b00 50%, #e65c00 100%);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

button i{

    margin-right:10px;

}

button:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

    background: linear-gradient(135deg, #ffb066 0%, #ff7a00 35%, #ff6b00 65%, #d95300 100%);

}

@media(max-width:900px){

.login_caixa{

    flex-direction:column;

}

.lado_esquerdo{

    width:100%;

    text-align:center;

    padding:50px 35px;

}

.logo{

    display:flex;
    justify-content:center;

}

.logo img{

    width:180px;

}

.lado_esquerdo h1{

    font-size:32px;

}

.lado_direito{

    padding:50px 30px;

}

}

@media(max-width:500px){

.login{

    padding:15px;

}

.lado_esquerdo{

    padding:40px 25px;

}

.lado_direito{

    padding:35px 20px;

}

form h2{

    font-size:30px;

}

button{

    height:56px;

}

}