@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    background-image: linear-gradient(#042751, #014F87, #027DAA, #98D3DE);
    height: 100vh;
    background-size: contain;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'poppins', Arial, Helvetica, sans-serif;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header{
    background-color: #9eafc9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5em;
    font-weight: 600;
    height: 40px;
    width: 80vw;
    max-width: 600px;
    margin: 10px 0px;
    padding: 5px;
    border-radius: 5px;
}

.container{
    background-color: #eeeeee;
    height: fit-content;
    width: 80vw;
    max-width: 600px;
    min-width: 250px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid black;
}

.container>p{
    display: flex;
    margin: 0 0 10px 0;
}

.form-confirmacao{
    display: flex;
    flex-direction: column;
}

label{
    display: inline-block;
    width: 65px;
}

.divconfsenha{
    display: flex;
    flex-direction: row;
}

.confsenha{
    display: inline;
    width: fit-content;
    margin-right: 3px;
}

input{
    background-color: white;
    display: inline-flex;
    box-sizing: border-box;
    flex-grow: 1;
    padding: 2px;
    border-radius: 4px;
    border: 2px solid black;
}

input[type=submit]{
    box-sizing: border-box;
    background-color: #027DAA;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    color: white;
    font-size: 1em;
    font-weight: 600;
}

input[type=submit]:hover{
    background-color: #014F87;
    cursor: pointer;
}

.pbotao{
    box-sizing: border-box;
    margin: 10px 0 0 0;
    align-items: center;
    justify-content: center;
}

.botaoconfirmar{
    box-sizing: border-box;
    background-color: #027DAA;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    width: 100%;
    height: 30px;
    color: white;
    font-size: 1.1em !important;
    font-weight: 600;
}

input[type=reset]{
    background-color: #d8d8d8;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    color: black;
    font-size: 1em;
    font-weight: 600;
}

.mensagem-erro{
    display: flex;
    justify-content: center;
    text-align: center;
}

.mensagem-erro>a{
    color: #BF0426;
    text-decoration: none;
    font-weight: 600;
}

.mensagem-erro>a:hover{
    text-decoration: underline;
}


.overlay{
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9990;
}

.msg-overlay{
    background-color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 200px;
    width: 300px;
    padding: 10px;
    color: black;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 0px 0px 50px black;
}

.msg-overlay>p>a{
    font-weight: bold;
    color: #BF0426;
    text-decoration: none;
}

.msg-overlay>p>a:visited{
    font-weight: bold;
    color: #BF0426;
    text-decoration: none;
}

.foto-upada{
    height: 150px;
    width: 150px;
    border: 3px solid black;
    border-radius: 50%;
    margin: auto;
}