﻿.block.login-block {
  color: #071f3b;
  text-align: center;
  height: calc(100% - 120px);
  margin: 43px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  padding:50px;
}

@media (max-width: 992px) {
  .block.login-block {
    width: 90%;
    height: auto;
    padding:15px;
  }
}

.block.login-block .title {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 992px) {
    .block.login-block .title {
        font-size: 28px;
    }
}

.block.login-block .sub-title {
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .block.login-block h2 {
    font-size: 18px;
  }
}

.block.login-block .buttons {
  display: flex;
  gap: 55px;
  justify-content: center;
}

@media (max-width: 992px) {
  .block.login-block .buttons {
    gap: 40px;
  }
}

.buttons > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  text-align: center;
  text-decoration: auto;
}

@media (max-width: 992px) {
  .buttons > a {
    height: auto;
    max-width: 120px;
  }

  .buttons > a img {
    width: 85px;
    height: 85px;
  }

  .buttons > a button {
    border: none !important;
  }
}
