/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
}

:root {
    --cor001: white; 
    --corPrincipal: #002c5f;
    --corSecundaria: ; 
    --corTerciaria: ; 
}

/* Style CSS */
.background-form {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--corPrincipal);
}
.titleForm-h1{
    text-align: center;
    padding-top: 80px;
    color: white;
    font: normal bold 1.7em arial;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.432);
    padding-left: 20px;
    padding-right: 20px;
}
.contain-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    padding: 20px;
    min-height: 530px;
    border-radius: 5px;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.349);
    background-color: white;
}
.img-logo {
    display: block;
    width: 80%;
    padding-top: 30px;
    margin: 0 auto;
}
.form-extermine {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 70px;
}
.contain-input {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 7px;
    overflow: hidden;
    border-color: rgba(0, 0, 0, 0.192);
    transition: 0.3s;
}
.contain-input:hover{
    border-color: rgba(0, 0, 0, 0.342);
}
.icon-user {
    max-height: 100%;
    width: 30px;
}
.contain-input > .label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 40px;
}
.contain-input > input{
    display: block;
    width: 100%;
    height: 40px;
    border: none;
    font: normal normal 0.9em arial;
    outline: none;
}
.botao-entrar{
    margin: 0 auto;
    width: 250px;
    padding: 12px;
    margin-top: 40px;
    border-radius: 15px;
    background-color: var(--corPrincipal);
    color: white;
    border: none;
    font: bold 1em Arial, sans-serif;
    transition: 0.3s;
}
.botao-entrar:hover{
    box-shadow: 1px 1px 10px #002c5f7e;
}

/*By JohnChk*/