* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

/* TOPO */
.navbar{
    background: #00467c;
}

label.logo {
    color: white;
    font-size: 30px;
    line-height: 80px;
    padding: 0 20px;
    font-weight: bold;
}


nav ul li a, form a{
    color: white;
    font-size: 17px;
    margin: 2.5px;
    padding: 7px;
    border-radius: 3px;
    text-transform: uppercase;
}

a:hover {
    background: #1b9bff;
    transition: 0.5s;
}
/* /TOPO */

/* CADASTRO */
.body-cadastro {
    height: calc(100vh + 400px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cadastro {
    width: 630px;
    height: min-content;
    padding: 20px;
    border: 2px solid #1b9bff;
    border-radius: 12px;
    background-color: #00467c;
}

.cadastro h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #fff;
}

.cadastro form {
    font-size: 20px;
}

.cadastro form .form-group {
    margin-bottom: 12px;
}

.cadastro form label {
    color: #fff;
}

.cadastro form input[type="submit"] {
    font-size: 20px;
    margin-top: 15px;
}
/* /CADASTRO */

/* RODAPÉ */
.footer {
    padding: 40px 0;
    background: #00467c;
}

.footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer ul li a:hover {
    opacity: 1;
    padding: 12px;
    border-radius: 15%;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/* /RODAPÉ */