.login {
    padding-top: 20px;
    padding-bottom: 160px;
  }
  
  .login .status{
    text-align: center;
    font-size: 0.8em;
    color:red;
  }
.login .preloader {
  text-align: center;
}
.login .preloader.hide{
  display:none;
}

  .login__form, .pass__form, .pass__form__register {
    width: 355px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin: auto;
    opacity:1;
    transition: opacity 0.3s ease;
  }


  .login__form input, .pass__form input, .pass__form__register input{
    width: 100%;
    height: 70px;
    padding: 27px 30px;
    font-weight: 500;
    border: 1px solid #A9A9A9;
    border-radius: 14px;
  }

  .login__form input.error, .pass__form input.error, .pass__form__register input.error{
    border-color:red;
  }

  .login__form input::placeholder {
    color: rgba(77, 77, 77, 0.4);
  }
  
  .user_phone_sended{
    font-weight: bold;
  }

  .login__form button, 
  .pass__form button,
  .pass__form__register button {
    width: 100%;
    height: 70px;
    font-size: 20px;
    margin-top: 10px;
  }

  .login__form button:disabled, 
  .pass__form button:disabled,
  .pass__form__register button:disabled {
    background:#ccc;
    color: #ffffff;
    cursor:default;
  }
  
  .login__form button:hover,  
  .pass__form button:hover,
  .pass__form__register button:hover{
    color: #ffffff;
  }
  
  .login__title {
    margin-bottom: 10px;
    font-size: 45px;
    font-family: 'Proxima Nova ExCn Rg';
    font-weight: normal;
    line-height: 90%;
    text-align: center;
  }
  
  .login__links {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  
  .login__links a {
    font-weight: 600;
    color: #0BA0B5;
    text-align: center;
    text-decoration: underline;
  }
  
  .login__links a:hover {
    text-decoration: none;
    color: #0BA0B5;
  }

  .login .forgot_password{
    text-align: center;
    font-size: 0.8em;
    
  }
  .login .forgot_password > a{
    color:#666;
    text-decoration: none;
    border-bottom:1px solid #666;
  }
  
  .recovery .login__title {
    text-align: center;
  }
  
  .login__subtitle {
    font-size: 24px;
    line-height: 140%;
    max-width: 480px;
    margin: 0 auto 40px;
    text-align: center;
  }
  
  .login__approval {
    text-align: center;
    color: #000000;
    line-height: 150%;
  }
  
  .login__approval a {
    font-weight: 600;
    text-decoration: underline;
    color: #0BA0B5;
  }
  
  .login__approval a:hover {
    text-decoration: none;
    color: #0BA0B5;
  }


  @media only screen and (max-width:768px) {
    .login {
        padding-bottom:20px;
    }
    .login__title{
        font-size: 30px;
    }
    .login__form input{
        height: 50px;
    }
    .login__form button{
        height: 50px;
    }
    .login__form, .pass__form, .pass__form__register{
        row-gap:20px;
        width: 300px;
    }
    
  }

  @media only screen and (max-width:400px) {  
    .login__form, .pass__form, .pass__form__register{
        width: 250px;
    }
  }


