/* =========================
   RESET
========================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body{
    font-family: Arial, Helvetica, sans-serif;
    background: #d4dfee;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   CONTAINER PRINCIPAL
========================= */
body{
    gap: 12px;
}

/* =========================
   CAIXA ESQUERDA
========================= */
body > div:first-child{
    width: 560px;
    height: 420px;

    background: linear-gradient(to bottom, #ffffff, #f5f5f5);

    border: 1px solid #b8c6dd;
    border-radius: 10px;

    padding: 60px 50px;

    box-shadow: inset 0 1px 0 #fff;
}

/* LOGO */
figure img {
    width: 90%;
    height: max-content;
    padding-bottom: 40px;
    padding-left: 60px;
    
}

/* TEXTOS */
body > div:first-child p{
    color: #666;
    font-size: 14px;

    line-height: 24px;

    margin-bottom: 10px;

    text-align: center;
}

/* LINKS */
body > div:first-child a{
    color: #3b5998;
    text-decoration: none;
    font-weight: bold;
}

body > div:first-child a:hover{
    text-decoration: underline;
}

/* =========================
   LOGIN BOX
========================= */
.login-container{
    width: 300px;
    height: 420px;

    background: #dfe7f7;

    border: 1px solid #b8c6dd;
    border-radius: 10px;

    padding: 20px;

    box-shadow: inset 0 1px 0 #fff;
}

/* TOPO LOGIN */
.login-container span{
    display: block;

    text-align: center;

    color: #666;
    font-size: 14px;

    margin-bottom: 25px;

    line-height: 20px;
}

.login-container span::first-line{
    font-size: 13px;
}

.login-container span strong{
    color: #333;
}

/* =========================
   FORM
========================= */
form{
    width: 100%;
}

/* CAMPOS */
.input-grupo{
    margin-bottom: 18px;
}

/* LABEL */
.input-grupo label{
    display: block;

    color: #333;
    font-size: 13px;
    font-weight: bold;

    margin-bottom: 4px;
}

/* INPUT */
.input-grupo input{
    width: 100%;
    height: 30px;

    border: 1px solid #8ea4c1;

    background: white;

    padding: 5px 8px;

    font-size: 13px;

    outline: none;
}

.input-grupo input:focus{
    border-color: #5c7db8;
}

/* =========================
   CHECKBOX
========================= */
form > div:nth-child(3){
    margin-top: 10px;
    margin-bottom: 20px;

    color: #444;
    font-size: 12px;
}

form > div:nth-child(3) input{
    margin-right: 5px;
}

form > div:nth-child(3) p{
    margin-top: 4px;

    color: #777;
    font-size: 11px;
}

/* =========================
   BOTÃO
========================= */
button{
    width: 85px;
    height: 30px;

    border: 1px solid #8f8f8f;

    background: linear-gradient(to bottom, #ffffff, #d9d9d9);

    color: #333;

    font-size: 13px;
    font-weight: bold;

    cursor: pointer;

    margin-top: 5px;
}

button:hover{
    background: linear-gradient(to bottom, #ffffff, #cfcfcf);
}

/* =========================
   RODAPÉ LOGIN
========================= */
.login-container > div:last-child{
    margin-top: 35px;

    border-top: 1px solid #c3cee5;

    padding-top: 18px;

    text-align: center;
}

.login-container > div:last-child p{
    color: #666;
    font-size: 13px;

    margin-bottom: 5px;
}

.login-container > div:last-child a{
    color: #d81b78;

    font-weight: bold;

    text-decoration: none;
}

.login-container > div:last-child a:hover{
    text-decoration: underline;
}

/* =========================
   RESPONSIVO
========================= */
@media(max-width: 950px){

    body{
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    body > div:first-child{
        width: 100%;
        height: auto;
    }

    .login-container{
        width: 100%;
        height: auto;
    }

    body > div:first-child h1{
        font-size: 60px;
    }
}