@charset "UTF-8";


:root {
    --cor-de-destaque: #225473;
    --cor-secundaria: #1C4859;
    --cor-tercearia: #A6A6A6;
    --cor-footer: #0D0D0D;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Mulish', Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;

}

/* Main */

main {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    width: 100px;
}

form {
    display: flex;
    width: 322px;
    height: 367px;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.26);
}

.form-group {
    width: 280px;
    text-align: center;
}

input {
    width: 100%;
    padding: 7px;
    font-size: 20px;
}

input[type=submit] {
    background-color: var(--cor-de-destaque);
    color: white;
    border: none;
    font-weight: 700;
}