@font-face {
    font-family: 'Gotham';
    src: url('font/GothamPro-Black.woff2') format('woff2'),
         url('font/GothamPro-Black.woff') format('woff');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Gotham';
    src: url('font/GothamPro-Medium.woff2') format('woff2'),
         url('font/GothamPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: 'Gotham';
    src: url('font/GothamPro-Bold.woff2') format('woff2'),
         url('font/GothamPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
  }

body {
    background-image: url("img/background.jpg");
    font-family: Gotham, 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    overflow-x: hidden;
    padding: 20px;
    background-color: #db1f8d;
}

@media only screen and (min-width: 1921px) {
    body {
        background-image: url("img/background@2x.jpg");
    }
}

@media only screen and (min-width: 3841px) {
    body {
        background-image: url("img/background@3x.jpg");
    }
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: auto;
}

.auth-form__form-content {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    padding-top: 48px;
}

.login-box {
    width: 100%;
    padding: 20% 0;
}

.auth-form__login-head-text {
    opacity: 0.8;
    font-family: Gotham;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
    color: #262626;
    width: 100%;
    margin-bottom: 48px;
}

.input-box {
    width: auto;
    padding-bottom: 32px;
    padding-right: 33px;
    padding-left: 33px;

}

.input-box-pass {
    width: auto;
    padding-right: 33px;
    padding-left: 33px;
}

.submit-btn-box {
    margin: auto;
    display: flex;
    text-align: center;
    flex-direction: row;
    padding: 45px;
}

button:active {
    border-radius: 100px;
    box-shadow: 0 2px 10px 0 rgba(237, 65, 89, 0.5);
    background-color: #ffffff;
    font-family: Gotham;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ed4159;
}

button:hover {
    border-radius: 100px;
    box-shadow: 0 6px 20px 0 rgba(237, 65, 89, 0.4);
    background-color: #ffffff;
    font-family: Gotham;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ed4159;
}

.auth-form__submit-btn {
    width: 145px;
    height: 48px;
    border-radius: 100px;
    box-shadow: 0 4px 16px 0 rgba(237, 65, 89, 0.4);
    background-color: #ed4159;
    border: 1px solid transparent;
    white-space: nowrap;
    font-family: Gotham;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 auto;
}

.auth-form__text-input {
    width: 100%;
    height: 48px;
    padding-left: 10px;
    opacity: 0.8;
    font-family: Gotham;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    box-sizing: border-box;
    border-radius: 4px;
    border: solid 1px rgba(151, 151, 151, 0.25);
    background-color: #f1f1f1;
    color: #262626;
}

.logo {
    height: auto;
    text-align: center;
    padding-top: 20%;
}

.hidden {
    display: none;
}

.auth-form__error-msg {
    width: auto;
    margin: 0 33px;
    margin-top: 33px;
    border-radius: 4px;
    background-color: rgba(230, 65, 89, 0.25);
    font-family: Gotham;
    font-size: 16px;
    font-weight: 500;
    text-align: 30px;
    padding: 12px;
    color: #ed4159;
    box-sizing: border-box;
}

.auth-form__user-avatar {
    width: 128px;
    height: 128px;
    border: solid 1px #979797;
    border-radius: 64px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.auth-form__user-name {
    width: auto;
    height: 19px;
    margin-bottom: 25px;
    margin-top: 30px;
    opacity: 0.8;
    font-family: Gotham;
    font-size: 28px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.23px;
    text-align: center;
    color: #262626;
}