.register-container {
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background-color: rgba(0, 0, 0, 0);
  }
  
  #close-modal-register {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #form-register {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 400px;
    position: relative;
    padding: 30px;
  }
  
  #form-register > h2 {
    filter: drop-shadow(2px 4px 6px black);
    font-family: var(--main);
    font-weight: bold;
    font-size: 35px;
    color: white;
    margin-bottom: 25px;
  }
  
  #form-register > .input-type > label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
  }
  
  #icon-password1,
  #icon-password2 {
    cursor: pointer;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  
  #icon-password1:hover,
  #icon-password2:hover {
    color: var(--green3);
  }
  
  @media (max-width: 668px) {
    #form-register {
      width: auto;
    }
  
    #close-modal-register {
      bottom: 10px;
    }
  }