main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.logotipo {
    width: 180px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

form>p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    border: 6px solid #F1D89C;
    background-color: #F1D89C;
}

label {
    font-size: 1.2em;
    color: #1d1b17;
}

input {
    text-align: center;
    font-size: 1em;
    height: 40px;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

input::placeholder {
    font-size: 1em;
}

.mensagem-erro {
    background-color: transparent;
    border: none;
    color: #FFF;
    text-align: center;
}

.btn-ouro {
    width: 100%;
    font-size: 1.4em;
    margin-top: 5px;
    height: 50px;
}