*,*::before,*::after{
    box-sizing:border-box;
}

body{
    font-family:'Google Sans', Arial, Helvetica, sans-serif;
    background:#f0f4f9;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    margin:0;
}

/* CONTENEDOR PRINCIPAL */

.login-container{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* RECTANGULO PRINCIPAL */

.login-card{
    background:white;
    width:1115px;
    min-height:170px;
    border-radius:22px;
    box-shadow:0 1px 3px rgba(0,0,0,0.08);
    padding:40px 90px 44px;
    display:flex;
    justify-content:space-between;
    position:relative;
}

/* G ESQUINA SUPERIOR */

.logo{
    position:absolute;
    top:30px;
    left:20px;
    width:100px;
}

/* LADO IZQUIERDO */

.left{
    width:20%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding-top:70px;
}

.left h1{
    font-size:34px;
    margin:0;
    font-weight:400;
    color:#202124;
    line-height:1.2;
}

/* TEXTO DEBAJO */

.subtitle{
    margin-top:12px;
    color:#5f6368;
    font-size:16px;
    font-weight:400;
}

/* LADO DERECHO */

.right{
    width:48%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding-top:70px;
}

/* INPUT CON LABEL FLOTANTE */

.input-group{
    position:relative;
    width:100%;
}

.input-group input{
    width:100%;
    padding:22px 16px 12px;
    border:1px solid #dadce0;
    border-radius:4px;
    font-size:16px;
    outline:none;
    background:transparent;
    color:#202124;
}

.input-group input:focus{
    border:2px solid #1a73e8;
    padding:21px 15px 11px;
}

.floating-label{
    position:absolute;
    top:50%;
    left:16px;
    transform:translateY(-50%);
    font-size:16px;
    color:#5f6368;
    pointer-events:none;
    background:white;
    padding:0 4px;
    transition:all 0.15s ease;
}

.input-group input:focus ~ .floating-label,
.input-group input:not(:placeholder-shown) ~ .floating-label{
    top:0;
    font-size:12px;
    color:#1a73e8;
}

/* LINKS */

.link{
    display:inline-block;
    margin-top:10px;
    font-size:14px;
    color:#1a73e8;
    cursor:pointer;
    text-decoration:none;
    font-weight:500;
}

.link:hover{
    text-decoration:underline;
}

.link-inline{
    color:#1a73e8;
    cursor:pointer;
    text-decoration:none;
    font-weight:500;
    font-size:14px;
}

.link-inline:hover{
    text-decoration:underline;
}

.info{
    margin-top:24px;
    font-size:14px;
    color:#5f6368;
    line-height:1.6;
}

/* BOTONES */

.actions{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:28px;
    margin-top:40px;
}

.create{
    color:#1a73e8;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    text-decoration:none;
}

.create:hover{
    text-decoration:underline;
}

button{
    background:#1a73e8;
    color:white;
    border:none;
    padding:10px 24px;
    border-radius:20px;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    letter-spacing:0.25px;
    min-width:90px;
}

button:hover{
    background:#1765cc;
    box-shadow:0 1px 3px rgba(0,0,0,0.15);
}

/* FOOTER */

.footer-google{
    width:1105px;
    margin-top:12px;
    padding:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#5f6368;
}

.footer-links a{
    margin-left:24px;
    text-decoration:none;
    color:#5f6368;
    padding:5px 8px;
    border-radius:4px;
    font-size:13px;
}

.footer-links a:hover{
    background:#dfe1e5;
}

.footer-idioma{
    padding:1px 1px;
    border-radius:4px;
    cursor:pointer;
    font-size:13px;
}

.footer-idioma:hover{
    background:#dfe1e5;
}