/* RESET */

html,
body {
    margin: 0;
    padding: 0;
    font-size: 100%;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.cardLogin {
    margin: 0 auto;
    float: none;
    padding: 15px;
}

h1, h3 {
    color: #ea0506;
    font-size: 1.1rem;
    font-weight: bold;
}

.login {
    border-radius: 2rem;
    border-color: #333;
    border-style: groove;
    width: 22rem;
    margin-top: 140px;
}

figcaption {
    font-size: 0.5rem;
    font-weight: bold;
    text-align: center;
}

img {
    filter: saturate(200%);
}

.rodape {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-style: italic;
    text-align: center;
}

.rodape-content {
    width: 400px;
}

.rodape-img {
    width: 101px;
}

.linha {
    width: 400px;
    height: 2px;
    background-color: #191c03;
    border: none;
}

.container-alert {
    position: absolute;
    margin: 0 auto;
    padding: 10px;
    width: 380px;
    height: 250px;
    left: calc(50% - 190px);
    top: calc(50% - 110px);
    background-color: white;
    z-index: 9999;
    border-radius: 2rem;
    border-color: red;
    border-style: groove;
    animation: move-down 1s;
    /* animation-delay: 800ms; */
    animation-fill-mode: backwards;
}

.alert {
    left: 0;
    width: 100%;
    border: none;
    margin: 0px;
}

.alert>span {
    color: #ea0506;
}

.container-alert>h3 {
    background-color: #ea0506;
    color: white;
    text-align: center;
    vertical-align: middle;
}