
  /* FONTS: SIZE */
  .av_pname__fsize1_2{
    font-size: 1em;
  }
  .av_pname__fsize1_4{
    font-size: 1.4em;
  }
  .av_pname__fsize1_6{
    font-size: 1.6em;
  }
  .av_pname__fsize1_8{
    font-size: 1.8em;
  }
  .av_pname__fsize2{
    font-size: 2em;
  }
  .av_pname__fsize2_2{
    font-size: 2.2em;
  }
  .av_pname__fsize2_4{
    font-size: 2.4em;
  }
  
/* GENERAL */
*, *::before, *::after{
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    font-family: 'Helvetica Neue';
    font-weight: normal;
}
* a{
    text-decoration: none; 
}

input::placeholder{
  opacity: 0.5;
}
 
.av_login__container{

    background-color: rgb(243, 243, 243);
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 10px;
}

.av_userForm__container{
    min-width: 250px;
    max-width: 300px;
    min-height: 100px;

    padding: 40px;

    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    display: flex;
   
    flex-direction: column;
    flex-wrap: wrap;
}

.av_userForm__body{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.av_userForm__body .av_form__userInput{
    min-width: 200px;
    min-height: 25px;

    border: 2px solid grey;
    border-radius: 10px;
    margin-top: 10px;
    padding: 8px 10px 5px 10px;

}


.av_userForm__cta{
    min-width: 80px;
    max-width: 80%;
    padding: 10px 10px 8px 10px;

    background-color: black;
    color: white;
    border-radius: 10px;
    border: 2px solid transparent;

    font-size: 1em;
    text-align: center;

    cursor: pointer;
}

.av_userForm__cta:hover{
    background-color: white;
    color: black;
    border: 2px solid black;
}


.av_userForm__options{
    margin-top: 10px;
}



.av_form__errors_container{
  line-height: 140%;

  padding: 10px 0px;

  background-color: #f5f5f5;
  color: red;
  
  width: 100%;
}


.av_form__messages_container{
  line-height: 140%;

  margin-bottom: 20px;
  padding: 20px 10px;

  background-color: #f5f5f5;
  color: black;
  
  width: 100%;
}


.av_f_w__title{
  font-weight: bold;
  text-align: center;
  font-size: 2em;
}
.av_f_w__txt{
  font-size: 1em;
  margin: 20px 0px;
  text-align: center;
}

