﻿@media (max-width: 768px) {
  .login-page .row {
    flex-direction: column-reverse;
  }
}
.login-page .row .col-md-4 {
  position: relative;
  height: 100vh;
  background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
@media (max-width: 768px) {
  .login-page .row .col-md-4 {
    max-height: 200px;
  }
}
.login-page .row .col-md-4 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 370px;
  padding: 1rem;
}
.login-page .row .col-md-8 {
  height: 100vh;
  background-color: #C49A4D;
  padding: 60px;
}
@media (max-width: 768px) {
  .login-page .row .col-md-8 {
    padding: 2rem;
    height: calc(100vh - 200px);
  }
}
.login-page .row .col-md-8 form {
  margin: auto;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
  background-image: url(/img/login-page-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 95px;
}
@media (max-width: 768px) {
  .login-page .row .col-md-8 form {
    padding: 2rem;
  }
}
.login-page .row .col-md-8 form .form-floating:focus-within {
  z-index: 2;
}
.login-page .row .col-md-8 form input[type=email] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.login-page .row .col-md-8 form input[type=password] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
