@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    list-style: none;
    overflow: hidden;
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
}

.esquerda{
    height: 100%;
    width: 35%;
    overflow: hidden;
    position: relative;
}

.esquerda video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texto{
  z-index: 5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.texto h1, .texto p{
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 95px;
}

.texto p{
    font-size: 16px;
    top: 56%;
    left: 29%;
    font-weight: 500;
}

.esquerda span{
    z-index: 5;
}

.esquerda svg{
    z-index: 5;
    width: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.esquerda svg path{
    fill: #fff;
}

.direita{
    width: 65%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login{
    width: 50%;
    height: 70%;
    background-color: #f8f9fc;
    border-radius: 15px;
}

.form-group{
    position: relative;
    width: 95%;
    margin: 0 auto;
    display: flex;
}

.form-group input{
    border-radius: 0 8px 8px 0;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 15px;
    background-color: #dbebfd;
}

.input-img{
    width: 50px;
    height: 50px;
    background-color: #dbebfd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px 0px 0px 8px;
}

.input-img svg{
    width: 25px;
}

.input-img svg path{
    fill: #2F3367;
}

.login-form{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.login-header{
    width: 100%;
    height: 20%;
    margin: 15px 0 0 15px;
}

.login-header h1{
    font-size: 28px;
    font-weight: 800;
    color: #2F3367;
}

.login-header p{
    font-weight: 450;
    color: #2F3367;
    margin-top: 15px;
}

.login-footer{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.login-footer button {
    margin-right: 15px;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(32deg, rgba(0, 0, 0, 1) 0%, rgba(5, 58, 84, 1) 83%) !important;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.login-footer button:hover{
    background-color: #0d284d;
}
  
.login-footer button span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 10px 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 450;
    letter-spacing: 0.3em;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.transparent{
  display: none;
}

.login-footer button span:hover{
    scale: 1.1;
}

.password-group img{
    position: absolute;
    z-index: 10;
    width: 22px;
    top: 30%;
    right: 15px;
    cursor: pointer;
}

.notificacoes{
  position: fixed;
  z-index: 3000;
  top: 10px;
  right: 10px;
}

.notificacoes ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .success {
      width: 382px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 10px;
      background: #EDFBD8;
      border-radius: 8px;
      box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }
    
    .success__icon {
      width: 20px;
      height: 20px;
      transform: translateY(-2px);
      margin-right: 8px;
    }
    
    .success__icon path {
      fill: #84D65A;
    }
    
    .success__title {
      font-weight: 500;
      font-size: 14px;
      color: #2B641E;
    }
    
    .success__close {
      width: 20px;
      height: 20px;
      cursor: pointer;
      margin-left: auto;
    }
    
    .success__close path {
      fill: #2B641E;
    }
  
    .error {
      width: 382px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 10px;
      background: #FCE8DB;
      border-radius: 8px;
      box-shadow: 0px 0px 5px -3px #111;
    }
    
    .error__icon {
      width: 20px;
      height: 20px;
      transform: translateY(-2px);
      margin-right: 8px;
    }
    
    .error__icon path {
      fill: #EF665B;
    }
    
    .error__title {
      font-weight: 500;
      font-size: 14px;
      color: #71192F;
    }
    
    .error__close {
      width: 20px;
      height: 20px;
      cursor: pointer;
      margin-left: auto;
    }
    
    .error__close path {
      fill: #71192F;
    }
  
    .info {
      width: 382px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 10px;
      background: #73aefa;
      border-radius: 8px;
      box-shadow: 0px 0px 5px -3px #111;
    }
    
    .info__icon {
      width: 20px;
      height: 20px;
      transform: translateY(-2px);
      margin-right: 8px;
    }
    
    .info__icon path {
      fill: #fff;
    }
    
    .info__title {
      font-weight: 500;
      font-size: 14px;
      color: #fff;
    }
    
    .info__close {
      width: 20px;
      height: 20px;
      cursor: pointer;
      margin-left: auto;
    }
    
    .info__close path {
      fill: #fff;
    }
  
    .warning {
      width: 382px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 10px;
      background: #FEF7D1;
      border-radius: 8px;
      box-shadow: 0px 0px 5px -3px #111;
    }
    
    .warning__icon {
      width: 20px;
      height: 20px;
      transform: translateY(-2px);
      margin-right: 8px;
    }
    
    .warning__icon path {
      fill: #F7C752;
    }
    
    .warning__title {
      font-weight: 500;
      font-size: 14px;
      color: #755118;
    }
    
    .warning__close {
      width: 20px;
      height: 20px;
      margin-left: auto;
      cursor: pointer;
    }
    
    .warning__close path {
      fill: #755118;
    }

  
  


