* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  background: #010101 url('./body-bg.png') no-repeat;
  background-position: 49.9% top;
  background-size: 1270px;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 450px) {
  body {
    background: #010101;
  }
}

button {
  cursor: pointer;
}

button:active {
  transform: translateY(1px);
}

button:disabled,
button.disabled,
a.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.my__preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  background-color: #010101;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my__cont {
  width: 100%;
  max-width: 450px;
  margin-inline: auto;
  background-color: #2c2c2c;
  min-height: 100svh;
}

.my__header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background-color: #2c2c2c;
  border-bottom: 1px solid #222;
  padding: 1rem;
}

.my__btn-close {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #777;
  border: 1px solid #999;
  border-radius: 50%;
}

.my__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.my__logo {
  width: auto;
  height: 50px;
}

.my__logo-extend {
  width: auto;
  height: 49px;
  transform: translateY(1px);
  margin-left: 0.25rem;
}

@media (max-width: 768px) {
  .my__logo,
  .my__logo-extend {
    height: 40px;
  }
}

.my__main-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100svh - 166px);
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .my__main-cont {
    min-height: calc(100svh - 146px);
    padding: 1rem;
  }
}

.my__login-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #3a3a3a;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  max-width: 26rem;
  text-align: center;
  padding: 2rem 1.5rem;
}

@media (max-width: 768px) {
  .my__login-cont {
    max-width: none;
  }
}

.my__btn-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
}

.my__btn-wrap {
  padding: 1.5rem 2rem;
  border: 1px solid #777;
  border-radius: 0.5rem;
  width: 100%;
}

@media (max-width: 648px) {
  .my__btn-wrap {
    padding: 0.75rem 1rem;
  }
}

.my__btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
}

.my__btn:active {
  transform: translateY(1px);
}

.my__btn-tg {
  color: #fff;
  background-color: #52aae9;
}

.my__btn-tg-bot {
  color: #fff;
  background-color: #ffb806;
}

.my__btn-icon-wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 648px) {
  .my__btn-icon-wrap {
    margin-right: 0.5rem;
  }
}

.my__footer {
  padding: 1rem;
  border-top: 1px solid #222;
  text-align: center;
  min-height: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .my__footer {
    min-height: 73px;
  }
}
