@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
a{
  text-decoration: none !important;
}

body {
    overflow-x: hidden !important;
  font-family: 'Montserrat', sans-serif !important;
  background-color: #212121
}

  
  
.div-form-img {
    right: 0;
    justify-content: left;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.div-form-button{
    display: flex;
    justify-content: center;
}
.div-form-button button{
    border: none;
    background-color: #00dbeb00;
}
.checkbox-group{
    text-align: center;
    color: #666666;
    display: flex;
    font-size: 14px;
    justify-content: center;
}

  
  /* Estilo base do label */
  .checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
  }
  
  /* Custom checkbox visual com span */
  .checkbox-group label span {
    position: relative;
    height: 1.5em;
    width: 1.5em;
    background-color: #ccc;
    border-radius: 0%;
    transition: 0.4s;
    display: inline-block;
  }
  
  .checkbox-group label span:hover {
    box-shadow: inset 10px 10px 10px #b3b3b3,
                inset -10px -10px 10px #ffffff;
  }
  
  /* Checkbox marcado */
  .checkbox-group input[type="checkbox"]:checked + span {
    background-color: #00ddeb;
    transform: rotateX(360deg);
    box-shadow: none;
  }
  
  .checkbox-group input[type="checkbox"]:checked + span:hover {
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  }
  
  /* Checkmark interno */
  .checkbox-group label span::after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .checkbox-group input[type="checkbox"]:checked + span::after {
    display: block;
    left: 0.55em;
    top: 0.35em;
    width: 0.25em;
    height: 0.5em;
    border: solid white;
    border-width: 0 0.15em 0.15em 0;
    box-shadow: 0.1em 0.1em 0em 0 rgba(0, 0, 0, 0.3);
    transform: rotate(45deg);
  }
  
.div-form-button button i:hover{
 color: #00ddeb;
 cursor: pointer;
 transition: 0.2s;
}
.div-form-button button i{
  font-size: 16px;
  color: #ffffff5d;
  transition: 0.2s;
}
.div-form-img img{
    width: 30px;
}
.div-form-top {
    align-items: center;
    text-align: center;
    justify-content: space-between;
    flex-direction: row;
    display: flex
;
}

.div-form-login{
   height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif !important;
    flex-direction: column;
    justify-content: center;
}
.div-form-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666666;
}.div-form-footer a{
    color: #17d4ff;
    text-decoration: none;
}
.div-form-footer a:hover{

    text-decoration: underline !important;
}
.div-form-align{
    width: 340px;
    height: 500px;
    background: #2c2c2c;
    padding: 47px;
    padding-bottom: 57px;
    color: #fff;
    border-radius: 17px;
    padding-bottom: 50px;
    font-size: 1.3em;
}
.input-group-name input, .input-group-senha input {
    opacity: 1;
    display: block;
    border: none;
    outline: none;
    width: 90%;
    padding: 13px 18px;
    margin: 20px 0 0 0;
    font-size: 0.8em;
    border-radius: 100px;
    background: #3c3c3c;
    color: #fff;
}
.input-group-senha {
    position: relative;
}


.input-group-senha i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ffffff71;
}
.div-form-title {
    padding: 0;
    position: relative;
    top: -35px;
    display: block;
    margin-bottom: -0px;
    font-size: 1.0em;
}
#form-login button {
    border: 0;
    outline: 0;
    width: 100%;
    padding: 13px;
    margin: 40px 0 0 0;
    border-radius: 500px;
    font-weight: 900;
  cursor: pointer;
}
#form-login button:hover {
    
  
}
#form-login button {
    background: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
    color: #fff;
    padding: 16px !important;
    transition: 0.2s;
}

#form-login button:hover {
   opacity: 0.8;
}



::selection {
    background-color: #17d4ff;
    color: black;
  }
  
  /* Customizando a barra de rolagem para navegadores Webkit (Chrome, Safari, Edge) */
  ::-webkit-scrollbar {
    width: 8px; /* Largura da barra de rolagem */
  }
  
  ::-webkit-scrollbar-track {
    background: #f0f0f0; /* Cor do fundo da barra de rolagem */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #111111; /* Cor do "polegar" da barra de rolagem */
    border-radius: 0px; /* Deixa os cantos arredondados */
  }
  #aviso {
    position: fixed;
    top: 10%;
    left: 50%;
    width: 320px;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #e9bfc4;
    color:#700413;
    padding: 10px 10px;
    text-align: center;
    border: 1px solid #eb001f;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    font-size: 1rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
    pointer-events: none;
  }
  #aviso-texto i{
    color:#700413;
  }
  
  #aviso.aviso-show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
  }
  
 
 @media (max-width: 1200px) {
  .input-group-name input, .input-group-senha input {
    opacity: 1;
    display: block;
    border: none;
    outline: none;
    width: 90%;
    padding: 13px 18px;
    margin: 20px 0 0 0;
    font-size: 0.6em;
    border-radius: 100px;
    background: #3c3c3c;
    color: #fff;
}
  .div-form-align {
    width: 80%;
    height: 100%;
    background: #2c2c2c;
    padding: 47px;
    padding-bottom: 57px;
    color: #fff;
    border-radius: 17px;
    padding-top: 50%;
    padding-bottom: 0px;
    font-size: 1.3em;
}}


