*, *::after, *::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 300ms;
}
button{
    border: none;
    cursor: pointer;
}
.flex {
    display: flex;
    align-items: center;
    justify-content: center;

}
.container{
    width: 95%;
    margin: 0 auto;
}
.header{
    padding: 10px 0px;
}
.header .container{
    justify-content: space-around;
}
.main{
    min-height: 85vh;
}
form.flex {
    gap: 20px;
    flex-direction: column;
}
.form{
    box-shadow: 0px 0px 18px 0px #0000001A;
    border-radius: 10px;
}
h3{
    font-family: 'Philosopher';
    font-size: 32px;
    font-weight: bold;
    line-height: 41.6px;
    text-align: center;
    padding: 36px;
    border-bottom: 1px solid #000000;
    max-width: 600px;
}
.auth{
    flex-direction: column;
}
.auth_menu{
}
.butt{
   font-family: 'Inter';
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;


    padding: 8px 12px 8px 12px;
    gap: 10px;
    border-radius: 4px;
    background: #C4CBD3;

    color: #fff;
}
.noUn{
    padding: 12px;
    font-weight: bold;
    background: #FFEEEE;
    border-radius: 10px;
}
.yesUn{
    padding: 12px;
    font-weight: bold;
    background: #D4F1D4;
    border-radius: 10px;
}
.butt:hover{
    background: #C7342A;

}
#ex{
    margin: 10px 12px;

}
.hidden{
    display: none;

}
.block_menu{
    gap: 20px;
    padding: 20px;
    
}
input{
    border: 1px solid #000000;
    padding: 8px 12px;
    border-radius: 5px;
}
input.error{
    border: 1px solid #F13B2F;

}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
  }
  .loader::before , .loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #000;
    animation: prixClipFix 2s linear infinite ;
  }
  .loader::after{
    transform: rotate3d(90, 90, 0, 180deg );
    border-color: #F13B2F;
  }

  @keyframes rotate {
    0%   {transform: rotate(0deg)}
    100%   {transform: rotate(360deg)}
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
  }