body {
    background:  #FFF url('../img/bg1.webp') 80% 80%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #FFF;
    /* box-shadow: inset 0 0 5rem rgba(0, 0, 0, .9); */
    padding: 0;
    margin: 0;
  }

#section-login {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    height: 100vh;
    background: transparent;
}

.wrap-login {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 100%;    
    transition: opacity 1s ease-in-out;
    opacity: 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.wrap-form {
    width: 250px;
    margin: 0 auto;    
}

.title {
    font-size: 0.9em;
    font-weight: 900;
    text-align: center;
    padding: 5px 0 10px;
    color: #ccc;
}

#logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.box-title {    
    display: none;
}

.text-title {
    font-size: 1.9em;
    color: #dadada;
    text-shadow: 1px 1px 1px #333;
}

.btn-rr {
    display: inline-block;
    padding: 5px 15px;
    background-color: #09A081;
    border: 1px solid #09A081;
    color: #FFF;
    font-size: 0.9em;
    border-radius: 20px;
    transition: background-color 0.5s ease-out, box-shadow .08s linear;
    box-shadow: 0 0px 0px 0px rgba(90, 90, 90, 0.1);
    cursor: pointer;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .wrap-login {
        width: 30%;
    }
    .box-title {    
        width: 20%;
        display: block;
    }
}
