@charset "UTF-8";

/* 

branco:
preto:
verde: #49a09d
roxo: #5f2c82

*/

* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    background-color: #5f2c82;
    height: 100vh;
    width: 100vw;
}

main {
    position: relative;
    height: 100vh;
    width: 100vw;
}

section#frame-base-login {
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;

    background-color: white;
    width: 300px;
    height: 515px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.450);

    transition: width .3s, height .3s;
    transition-timing-function: ease;
}

section#frame-base-login div#frame-imagem {
    display: block;
    background: url(../imagens/imagem.jpg) no-repeat;
    background-size: cover;
    height: 200px;
}

section#frame-base-login div#frame-formulario {
    display: block;
    padding: 10px;
}

div#frame-formulario h1 {
    text-align: center;
    margin-bottom: 10px;
}

div#frame-formulario p {
    font-size: 0.8em;
    margin-bottom: 25px;
    text-align: center;
}



form div.campo-login-senha label {
    color: white;
    width: 20%;
    height: 40px;
    padding: 0px;
    font-weight: bolder;
    background-color: #5f2c82;
    border-radius: 8px 0px 0px 8px;
    float: left;
    font-size: 0.8em;
    margin-bottom: 10px;
    
    /* Para centralizar o texto na vertical e horizontal */
    display: flex;              
    justify-content: center;
    align-items: center;
}


div.campo-login-senha input {
    background-color: white;
    border: 2px solid #5f2c82;
    border-left: 0px;
    font-size: 1em;
    width: 80%;
    height: 40px;
    border-radius: 0px 8px 8px 0px;
    float: right;
    padding-left: 10px;
    margin-bottom: 10px;
}

form input[type=submit] {
    display: block;
    font-size: 1em;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    background-color: #49a09d;
    color: white;
    border: none;
    border-radius: 5px;
}

form input[type=submit]:hover {
    background-color: #2c605f;
    cursor: pointer;
}

form a.btn-lembrar-senha {
    display: block;
    text-align: center;
    font-size: 1em;
    width: 100%;
    height: 40px;
    padding-top: 0px;
    margin-top: 5px;
    background-color: white;
    border: 2px solid #49a09d;
    border-radius: 5px;
    text-decoration: none;
    color: #2c605f;
    
    /* Para centralizar o texto na vertical e horizontal */
    display: flex;              
    justify-content: center;
    align-items: center;
}



form a.btn-lembrar-senha:hover {
    background-color: #60d2ce;
}