/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --azul:#0037d8;
    --azul-claro:#1d8cff;
    --gris:#666;
    --gris2:#e8e8e8;
    --fondo:#f5f5f5;

}

html,
body{

    width:100%;
    height:100%;

    font-family:"Segoe UI",sans-serif;

    background:var(--fondo);

}

/*==========================
CONTENEDOR
==========================*/

.container{

    width:100%;
    height:100vh;

    display:flex;

}

/*==========================
IMAGEN
==========================*/

.left{

    width:50%;

    background:url("imagen.webp") center center;

    background-size:cover;

}

/*==========================
FORMULARIO
==========================*/

.right{

    width:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#f7f7f7;

    padding:40px;

}

/*==========================
CARD
==========================*/

.card{

    width:570px;

    background:#fff;

    border-radius:28px;

    padding:42px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12),
    0 20px 60px rgba(0,0,0,.08);

}

/*==========================
TITULOS
==========================*/

.small-title{

    color:var(--azul-claro);

    font-size:22px;

    font-weight:400;

    margin-bottom:5px;

}

.big-title{

    color:var(--azul);

    font-size:38px;

    font-weight:700;

    line-height:1.05;

    margin-bottom:38px;

}

/*==========================
INPUTS
==========================*/

.group{

    margin-bottom:28px;

}

.group label{

    display:block;

    color:var(--gris);

    margin-bottom:10px;

    font-size:15px;

}

.input-box{

    display:flex;

    align-items:center;

    height:64px;

    border:1px solid var(--gris2);

    border-radius:35px;

    padding:0 22px;

    background:white;

    box-shadow:0 2px 8px rgba(0,0,0,.06);

    transition:.2s;

}

.input-box:hover{

    border-color:#cfcfcf;

}

.input-box:focus-within{

    border-color:var(--azul);

    box-shadow:0 0 0 4px rgba(0,55,216,.08);

}

.input-box input{

    flex:1;

    border:none;

    outline:none;

    background:none;

    padding-left:15px;

    font-size:18px;

}

.input-box i{

    color:var(--azul);

    font-size:20px;

}

.eye{

    cursor:pointer;

    color:#777 !important;

}

/*==========================
LINKS
==========================*/

.links{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:15px;

    margin-top:10px;

    margin-bottom:35px;

}

.links a{

    color:#1485ff;

    text-decoration:none;

    font-size:15px;

}

.links a:hover{

    text-decoration:underline;

}

/*==========================
BOTON
==========================*/

.btn-login{

    width:100%;

    height:60px;

    border:none;

    border-radius:35px;

    background:linear-gradient(180deg,#1748d7,#0632c7);

    color:white;

    font-size:21px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.btn-login:hover{

    transform:translateY(-1px);

    filter:brightness(.96);

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1000px){

.container{

    flex-direction:column;

}

.left{

    width:100%;
    height:35vh;

}

.right{

    width:100%;
    height:65vh;

}

.card{

    width:100%;
    max-width:600px;

}

.big-title{

    font-size:42px;

}

}

@media(max-width:650px){

.right{

    padding:20px;

}

.card{

    padding:28px;

}

.big-title{

    font-size:34px;

}

.input-box{

    height:56px;

}

.btn-login{

    height:54px;

    font-size:18px;

}

.links a{

    font-size:14px;

}

}