* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #484D50;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
}

.logo {
    height: 10vh;
    margin-right: 10vh;
    border-radius: 10px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    height: 12vh;
    background-color: rgb(10, 56, 90);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    font-size: 18px;
    padding-block: 10px;
    padding-inline: 12px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
    cursor: pointer;
}


.inf-menu {
    transition: 0.3s;
}

.inf-menu:hover {
    color: gray;
    background-color: #484D50;

}

.hamb {
    display: none;
    border: none;
    background: none;
    border-top: 2px solid #fff;
    cursor: pointer;
    transition: 0.5s;
    z-index: 999;
}

.hamb::before,
.hamb::after {
    content: " ";
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}

dialog{
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50%);
  border-radius: 20px;
  background-color: rgb(10, 56, 90);
  
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.title-modal{
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
}

.card-login{
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  background-color: rgb(10, 56, 90);
}

.card-sec{
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 5px;
  border-radius: 10px;
  padding: 10px;
}

.title-card-sec{
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.card-sec-1{
  background: linear-gradient( to top, #000, #1b1b1b, #3c3c3c);
}

.card-sec-2{
  background: linear-gradient( to top, #00019a, #1212b8, #3333e3);
}

.sub-title-sec{
  color: #fff;
  font-weight: 100;
}

.container-acessar{
  margin: 5px;
}

.container-acessar a{
  border: 1px solid #fff;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.container-acessar a:hover{
  background-color: #60606061;
}

.card-sec-2{
  background: linear-gradient( to top #ffce3f, #ffd556, #ffde7d);
}

@media (max-width: 750px) {
    .hamb {
        display: block;
        z-index: 999;
      }
    
      .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 90vh;
        background-color: rgb(10, 56, 90);
        clip-path: circle(100px at 90% -15%);
        transition: 1s ease-out;
        z-index: 500;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 0;
    
        pointer-events: none;
      }
    
      .nav-list a {
        font-size: 24px;
        opacity: 0;
      }
    
      .nav-list li:nth-child(1) a {
        transition: 0.5s 0.2s;
      }
    
      .nav-list li:nth-child(2) a {
        transition: 0.5s 0.4s;
      }
    
      .nav-list li:nth-child(3) a {
        transition: 0.5s 0.6s;
      }

      .nav-list li:nth-child(4) a {
        transition: 0.5s 0.8s;
      }
    
      /* Estilos ativos */
    
      .nav.active .nav-list {
        clip-path: circle(1500px at 90% -15%);
        pointer-events: all;
      }
    
      .nav.active .nav-list a {
        opacity: 1;
      }
    
      .nav.active .hamb {
        position: fixed;
        top: 26px;
        right: 16px;
        border-top-color: transparent;
      }
    
      .nav.active .hamb::before {
        transform: rotate(135deg);
        width: 30px;
      }
    
      .nav.active .hamb::after {
        transform: rotate(-135deg);
        top: -7px;
        width: 30px;
      }

  dialog{
    width: 90vw;
    top: 55%;
  }

}

#image-logo{
  width: 65px;
  height: auto;
}

.container{
  background-color: rgb(10, 56, 90);
  margin-top: 100px;
  padding: 6px;
  min-width: 200px;
  max-width: 400px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px 0 black;
  border-radius: 10px;
}

form{
  position: absolute;
  margin-top: 80px;
  transition: .5s;
  width: 300px;
  height: 400px;
}

.buttonsForm{
  margin-top: 40px;
  z-index: 1;
  position: relative;
  border-radius: 30px;
  box-shadow: 0 0 7px 0 black;
}

.buttonsForm button{
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  padding: 10px 29px;
  color: black;
  font-weight: 900;
}

.btnColor{
  position: absolute;   
  width: 108px;
  height: 100%;
  background: linear-gradient(to right, #ffd547, #fad763);
  border-radius: 30px;
  transition: 0.5s;
}

input[type='number'], input[type='password']{
  border: none;
  border-radius: 60px;
  padding: 8px 0px 8px 35px;
  outline: none;
  width: 100%;
}

input[type=number]::-webkit-inner-spin-button { 
  -webkit-appearance: none;
  
}

input[type='number']{
  margin-top: 100px;
  -moz-appearance: textfield;
   appearance: textfield;
}

input[type='password']{
  margin-top: 40px;
}

.btn-entrar{
  background-color: #1d9ff0;
  font-weight: 800;
  border-radius: 10px;
  width: 100%;
  color: white;
  border: none;
  padding: 8px 0px 8px 15px;
  font-size: 15px;
  margin-top: 40px;
  cursor: pointer;
  transition: .3s;
}

.btn-entrar:hover{
  background-color: #000 ;
}

.divCheck{
  margin: 10px 0 0 5px;
  width: 80%;
  font-size: 13px;
}
.divCheck span{
  color: white;
}

#user{
  left: 55px;
}

#admin{
  left: 450px;
}

i{
  position: absolute;
  left: 0;
  padding: 10px 10px;
}

.iCod{
  top: 100px
}

.iPassword{
  top: 181px
}

#btnSingin:focus{
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: 0px;
}

#btnSingup:focus{
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: 0px;
}
