@charset "utf-8";

html, body {
    width: 100vw;
    height: 100vh;
}

main#password-lost {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

main#password-lost > section {
    width: 100%;
    height: 200px;
    /*border: 1px solid green;*/

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

main#password-lost > section > h1 {
    font-size: 2.5em;
    margin-top: -50px;
    margin-bottom: 50px;
}

main#password-lost > section > form {
    /*border: 1px solid green;*/
    width: 90%;
    height: 200px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
}

main#password-lost > section > form > label {
    align-self: flex-start;
    margin-left: 20px;
}

main#password-lost > section > form > input[type="email"] {
    width: 85%;
    padding: 10px;
    border: 0.5px solid var(--cor4);
    border-radius: 5px;
}

main#password-lost > section > form > input[type="submit"] {
    align-self: flex-end;
    margin-right: 20px;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--cor1);
    border: none;
    border-radius: 10px;
    color: var(--cor5);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

main#password-lost > section > form > input[type="submit"]:hover {
    background-color: var(--cor0);
}


