@charset "UTF-8";

/* 
Paleta de cores 
Preto Background: #0B0C10
Titulos:#FFFFFF
Paragrafos:#AEB1B7
botão 1:#1E90FF
Botão 1 hover:#104E8B
detalhes/links:#9D4EDD
Destaque/Erro:#FF4C4C
*/

* {    
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

span {
    color: #1E90FF;
    font-size: 40px !important;
}

body, html {
    background-image: url(../imgs/pexels-alex-andrews-271121-821644.jpg);
    background-size: 150vw 150vh;
    color: #AEB1B7;
    height: 100vh;
    width: 100vw;
}

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

fieldset#login-section {
    background-color: #0b0c10c8;
    border: #9D4EDD solid 1px;
    border-radius: 12px;
    height: 580px;
    width: 360px;
    box-shadow: 0px 0px 10px #000000;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

fieldset#login-section > div#image {
    background-size: cover;
    height: 200px;
    width: 200px;
    margin: auto;
}

legend {
    display: block;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 20px;
    font-family: "Passion One", sans-serif;
    font-size: 2em;
    font-weight: 700;
    font-style: normal;
}

fieldset#login-section > div#form {
    display: block;
    padding: 10px;
}
fieldset#login-section > div#form > p {
    font-size: 1.2em;
    text-indent: 5px;
    padding-left: 20px;
    margin-bottom: 10px;
    color: white;
    text-shadow: #000000 0px 0px 5px;
}

form {
    background-color: rgba(240, 248, 255, 0.034);
    border-radius: 12px;
    border: #9D4EDD dashed 1px;
    padding: 10px;
}

label {
    display: none;
}
form > button[type=submit] {
    display: block;
    margin-top: 15px;
    background-color: #1E90FF;
    width: 100%;
    height: 40px;
    color: white;
    border-radius: 12px;
    border: none;
    padding: 6px;
    font-size: 1em;
    cursor: pointer;
}
form > button[type=submit]:hover {
    background-color: #104E8B;
}

form > a.button {
    display: block;
    margin-top: 15px;
    text-align: center;
    background-color: #1E90FF;
    width: 100%;
    height: 40px;
    color: white;
    border-radius: 12px;
    border: none;
    padding: 6px;
    font-size: 1em;
    text-decoration: none;
    cursor: pointer;
}
form > a.button:hover {
    background-color: #104E8B;
}

.input-group > input {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 6px;
    font-size: 1.2em;
    margin: auto;
    margin-bottom: 15px;
    margin-left: 5px;
    width: 80%;
    height: 35px;
    background-color: aliceblue;
    border: #9D4EDD solid 1px;
    border-radius: 6px;
}

.vibrate {
    animation: vibrar 0.3s ease;
}

@keyframes vibrar {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}