/* CLASSES BOOTSTRAP */
.alert-danger,
.alert-warning,
.alert-success,
.alert-info {
    display: none;
}

form .input-group {
    margin-bottom: 50px;
}

/* CLASSES PAGINA DE LOGIN */
.pglogin-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    flex-direction: column;
}

.pglogin-login {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    text-align: center;
}

.pglogin-logo {
    width: 250px;
    height: auto;
}

.pglogin-container-login {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
}

.pglogin-container-alert {
    width: 100%;
    height: 100px;
    margin: 10px 0px 10px 0px;
}

.pglogin-container-cadastro {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
}

.pglogin-container-recuperar {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
}

.pglogin-div-links {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: space-between;
}

.pglogin-cadastrarme,
.pglogin-logar {
    float: left;
    margin-top: 10px;
    color: #00995D;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
}

.pglogin-recuperar {
    margin-top: 10px;
    float: right;
    color: #00995D;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
}

.pglogin-login form input[type='text'],
.pglogin-login form input[type='password'] {
    height: 50px;
}

.pglogin-login label.error {
    color: red;
    display: flex;
    width: 100%;
    padding: 5px;
    align-items: flex-start;
}

.pglogin-div-regras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/** IDS PAGINA DE LOGIN */

#c_login {
    width: 90%;
    max-width: 400px;
}

#c_cadastro {
    width: 90%;
    max-width: 400px;
    display: none;
}

#c_recuperar {
    width: 90%;
    max-width: 400px;
    display: none;
}