* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #EEE;
}

h1 {
    font-size: 30px;
    color: #555;
    margin: 10px 0px;
}

p {
    text-align: justify;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
    min-width: 100%;
}

input {
    outline: none;
    width: 90%;
    height: 30px;
    margin: 15px 0px;
    border: 1px solid #555;
    border-radius: 7px;
    padding-left: 10px;
    align-self: center;
}

label {
    color: #555;
    font-weight: bold;
    margin: 10px 7px 0px 16px;
}

.resetbox {
    display: flex;
    flex-direction: column;
    width: 440px;
    height: 220px;
    background-color: white;
    align-items: center;
    padding: 10px;
}

.icon-depen {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.botao {
    margin: 0px;
    width: 40%;
    height: 35px;
    border: 0px;
    background-color: lightseagreen;
    cursor: grab;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-top: 12px;
}

.botao:hover {
    opacity: 0.7;
}

.errors {
    color: red;
    margin-left: 18px;
}

@media (max-width: 1000px) {

}

@media (max-width: 800px) {


}

