* {
  box-sizing: border-box;
}  

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body {
    background: #082f0e;
    background-image: url('https://alunos.comunidadecelaoweb.com.br/css/img/BG-HubCelado-95.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 100%;
    overflow: hidden;
    font-family: 'Manrope';
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    width: 100%;
    box-shadow: 0px 50px 100px 15px rgba(0,0,0,0.4);
    transition: all .3s ease;
}

.login-box::before {
    content:"";
    position:absolute;
    z-index:-1;
    top:0;
    left:0;
    right:0;
    bottom:0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, #00000000 40%, #00000000 90%, rgba(255, 255, 255, 0.04) 100%);
    -webkit-mask:
       linear-gradient(#fff 0 0) content-box,
       linear-gradient(#fff 0 0);
            mask:
       linear-gradient(#fff 0 0) content-box,
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.imagem-logo {
    width: 120px;
    height: auto;
}

.login-box form {
    width: 100%;
}

/* FORM GROUP */
.form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    width: 100%;
  }
  
  .form_login {
    font-family: 'Manrope';
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: 0;
    font-size: 1.3rem;
    color: #fff;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
  }

  .form_login::placeholder {
    color: transparent;
  }

  .form_login:placeholder-shown ~ .form_login_label {
    font-size: 14px;
    cursor: text;
    top: 50%;
  }
  
  .form_login_label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    pointer-events: none;
  }
  
  .form_login:focus {
    padding-bottom: 7px;
    font-weight: 700;
    border-width: 1px;
    border-image: linear-gradient(to right, #84E509, #bfff6b);
    border-image-slice: 1;
  }

  .form_login:focus ~ .form_login_label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 10px;
    color: #84E509;
    font-weight: 700;
  }
  
  /* reset input */
  .form_login:required, .form_login:invalid {
    box-shadow: none;
  }

input.btn_form_login {
    width: 100%;
    margin-top: 16px;
    padding: 14px 14px;
    background: #84E509;
    border: none;
    font-family: 'Manrope';
    color: #11451E;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0px 0px 50px 0px #84E50900;
    transition: all .35s ease;
}

input.btn_form_login:hover {
    box-shadow: 0px 0px 50px 0px #84E509;
    transition: all .35s ease;
}

input.btn_form_login:active {
    transform: scale(0.98);
    filter: brightness(150%);
}

.aviso-direitos {
  position: absolute;
  left: 0px;
  bottom: 20px;
  width: 100%;
  height: auto;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Manrope';
  font-size: 10px;
  text-align: center;
}

.container_esqueciasenha {
  width: 100%;
  text-align: right;
  margin-bottom: 10px;
  margin-top: 4px;
}

.container_esqueciasenha a {
  color: #84E509;
  font-size: 10px;
  transition: all .3s ease;
}

.container_esqueciasenha a:hover {
  color: white;
  transition: all .3s ease;
}

.mensagem-erro {
  width: 100%;
  margin-top: 20px;
  color: rgb(255, 147, 147);
  font-weight: bold;
  text-align: center;
}

.senha-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  bottom: 0px;
  right: 0px;
  cursor: pointer;
  font-size: 18px;
  color: #555;
  user-select: none;
}

.toggle-password:hover {
  color: #000;
}

.togglemostrasenha {
  width: 24px;
}

/* MUDANÇAS RESPONSIVAS */

/* TABLET PAISAGEM PARA CIMA */
@media(min-width: 1024px) {
    .login-box {
      max-width: 416px;
      padding: 40px;
    }
}

/* TABLET RETRATO PARA BAIXO */
@media(max-width: 1023px) {
  .login-box {
    max-width: 320px;
    padding: 32px;
  }
}