.login-container {
    width: 100%;
    text-align: center;
}

/* LOGO */
.logo-big img {
    width: 50%;
    margin: 0 auto 20px auto;
    display: block;
}

/* CAMPOS */
.field {
    text-align: left;
    margin-bottom: 20px;

    /* CENTRALIZA O BLOCO */
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    width: 50%;
    color: #bfc4c3;
    transition: color 0.3s;
}

.field input:focus {
    border-color: #651012;
}

input {
    width: 50%;
    padding: 10px;
    background: transparent;
    border: 1px solid #b04040;
    border-radius: 6px;
    color: #fff;
    outline: none;
    font-size: 14px;
}

input:focus {
    border-color: #ff5c5c;
}

/* BOTÃO */
button {
    width: 50%;
    padding: 12px;
    margin: 10px auto 0 auto;
    background: transparent;
    border: 1px solid #b04040;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
    display: block;
}

button:hover {
    background: #b04040;
    border-color: #ff5c5c;
}

.erro {
    margin-top: 15px;
    color: #ff6b6b;
    font-size: 14px;
}
