﻿* {
    padding: 0px;
    margin: 0px;
}

.div_main {
    height: 100vh;
    background: rgb(163, 199, 46);
    background: linear-gradient( 45deg, rgba(163, 199, 46, 1) 0%, rgba(19, 83, 82, 1) 100% );
    /* background-color: green; */
    /* background-image: url('./Fundo_de_Tela.png'); */
    /* background-image: url('./Fundo_de_Tela.png'); */
    /* background-size: cover;
  background-position: center center; */
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.div_header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

#div_header_sucess {
    display: none;
}

#div_header_error {
    display: none;
}

p {
    font-size: 2rem;
    font-weight: bold;
}

.div_text {
    width: 50%;
    border-radius: 20px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    color: white;
    padding: 30px;
    box-shadow: 10px 10px 28px 1px rgba(0, 0, 0, 0.42);
}

.div_header_sucess_shadow {
    background-color: rgba(0, 128, 0);
}

.div_header_error_shadow {
    background-color: rgba(255, 0, 0);
}

.input-status {
    pointer-events: none;
    text-align: center;
    font-weight: bold;
}

.infoBox {
    /* margin: auto; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 10px 10px 28px 1px rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.inputBox {
    text-align: left;
}

.inputDefault {
    display: block;
    border-radius: 5px;
    padding: 2px 5px;
    background-color: white;
}

.labelDefault {
    color: white;
}

.row1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.row3 {
    margin-top: 1.4rem;
}

.logo {
    width: 20em;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

@media screen and (max-width: 650px) {
    .row1 {
        flex-direction: column;
    }
}
