* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.img-background-login {
    background-image: url(../img/img-01-01.png);
    background-repeat: no-repeat;

    /* Alterado em 21/11/2022 por Luan Fernando #29807 */
    background-size: contain;
    background-attachment: fixed;
    background-position: center;

    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container da tela de login */
.container {
  /* width: 100%;  
  height: 100%;
  
  background-color: azure;
  display: flex;
  justify-content: center;
  align-items: center; */
  display: grid;
  margin-top: 30vh;
  justify-items: center;

}

.box-login {
    width: 400px;
    height: 400px;
    background-color: #0c5386;
    opacity: 0.9;
    border-radius: 5px;
    border-top: 20px solid #fff;
    box-shadow: 1px 1px 1rem #fff;
}
.box-login #h3-login{
    color: #0c5386;
}

/* Box title form */
.box-form-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: #fff;
    /* margin-top: 16px; */
}

/* Color font,size h3 */
.box-form-title h3 {
    color: #fff;
    font-size: 24px;
}

/* Box form login */
.box-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Inputs form login */
.box-input {
    width: 80%;
    height: 40px;
    margin-bottom: 40px;
    font-size: 14px;
    background-color: #fff;
    border-radius: 5px;
    border-color: transparent;
}

/* Button entrar */
.box-btn-entrar {
    width: 80%;
    height: 40px;
    margin-bottom: 40px;
    font-size: 18px;
    background-color: #fff;
    border-radius: 5px;
    border-color: transparent;
    cursor: pointer;
    
}
.box-btn-entrar:hover{
    box-shadow: 1px 1px 1rem #fff;
}

form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Menssagem de alerta */
.message {
    width: 80%;
    height: 40px;
    background-color: red;
    opacity: 0.6;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* Alerta erro usuario e senha form login */
.message h6 {
    color: #fff;
    font-size: 12px;
}

/* Media  */

@media (max-width: 450px){
    .container{
        display: flex;
        width: 100%;
        margin-left: 8px;
        margin-right: 8px;
    }

    .img-background-login {
        align-items: center;
        padding: 16px;
    }
    
}
