body {
    background-image: url("../img/fundo-login.jpg");
    background-size: cover;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.card-fundo {
    position: absolute;
    text-align: center;
    padding: 20px;
    max-width: 415px;
    width: 95%;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 4px 4px 5px -4px rgb(92 92 92 / 75%);
    border: 1px solid #a5a5a5;
}

.logo {
    width: 60%;
    margin: auto;
    margin-bottom: 10px;
}

.card-fundo h1 {
    position: relative;
    font-size: 2.4rem;
    color: var(--cor-principal-escura);
    font-weight: bold;
    font-style: italic;
    text-align: center;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.card-fundo h1::after {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 20px;
    height: 2px;
    color: var(--cor-principal);
    border-radius: 1px;
    background: var(--cor-principal);
}

.campo {
    margin-top: 10px;
}

input {
    margin-bottom: 10px;
}

label {
    position: absolute;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: linear all 0.2s;
}

.pai-fieldset {
    display: flex;
    justify-content: center;
}

.botoes {
    text-align: center;
    margin-top: 10px;
}

button[type="submit"] {
    margin-right: 4px;
    background: var(--cor-principal-acentuada);
    color: #fff;
    margin-bottom: 10px;
}

.limpar {
    color: #000000;
}

@media (max-width: 800px) {
    .status span:first-of-type {
        display: none;
    }

    .status span:last-of-type {
        display: inline;
    }
}