/* Login page */
.form-background{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
  min-height: calc(100vh - 92px);
  height: fit-content;
  padding: 40px 80px;
}

.form-description-wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 40%;
  min-height: calc(100vh - 92px);
  height: auto;
  padding: 180px 80px 40px 80px;
}

.form-block-grey{
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  background-color: #E3EDFC;
}

.form-block-image-wrapper{
  position: absolute;
  top: -560px;
  left: 300px;
  width: 749.5px;
  height: 1030px;
  background-color: red;
  transform: rotate(-200deg);
}

.form-block-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-triangle-blue{
  position: absolute;
  top: 664px;
  left: -52px;
  width: 749.5px;
  height: 1030px;
  background-color: #3F5BEC;
  transform: rotate(-20deg);
}

.login-title{
  font-size: 48px;
  line-height: 1;
}

@media (max-width: 540px) {
  .login-title{
    font-size: 40px;
  }
}

.form-options-text{
  text-align: center;
  width: 100%;
}

.form-options-text::before{
  position: absolute;
  content: "";
  width: 42%;
  height: 1px;
  background-color: #B6C7DF;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.form-options-text::after{
  position: absolute;
  content: "";
  width: 42%;
  height: 1px;
  background-color: #B6C7DF;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.button-border-gray{
  border: 1px solid #9EACBF;
}

.button-border-gray:hover{
  border: 1px solid #131B41;
}


.form-description-check{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
}

@media (max-width: 999px) {
  .form-background{
    padding: 40px 0;
    width: 100%;
  }

  .form-description-wrapper {
    display: none;
  }
}

.login-footer-link{
  border-bottom: 1px solid transparent;
}

.login-footer-link:hover{
  border-bottom: 1px solid #131b41;
}
