body {
    font-family: Arial, sans-serif;
    background-image: url('capivara-tech.png');
    background-size: cover;
    color: whitesmoke;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-position: center;
}

.area-cad,
.area-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.link-cad {
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-cad a {
    color: rgb(197, 149, 86);
    text-decoration-style: wavy;
    text-decoration-color: blue;
}

input {
    width: 300px;
    height: 30px;
    margin: 10px;
    border-radius: 5px;
    border: solid 3px black;
    padding: 5px;
    background: chocolate;
}

button {
    width: 100px;
    height: 30px;
    margin: 10px;
    border-radius: 5px;
    border: none;
    background-color: rgb(197, 149, 86);
    color: whitesmoke;
    cursor: pointer;
}

h1 {
    color: rgb(197, 149, 86);
    border: solid 3px rgb(197, 149, 86);
    padding: 10px;
    border-radius: 5px;
}