/* ----------------Login Form--------------------*/
.home-page {
  margin: 0;
  padding: 0;
}
.home-page main {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  background: black;
}
.home-page main .left-side {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .home-page main .left-side {
    width: calc(100% - 10px);
    background: url("https://edrd11.creativeworkspace-bz.com/public/images/login-hero-image.png") black;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
  }
}
.home-page main .left-side .form-header {
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 30px;
}
.home-page main .left-side .form-header h1 {
  font-size: clamp(30px, 8vw, 55px);
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  margin: 5px auto;
}
.home-page main .left-side .form-header h2 {
  font-size: clamp(26px, 5vw, 36px);
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  margin: 5px auto;
}
.home-page main .left-side .login-form {
  background: rgba(29, 29, 29, 0.6);
  padding: calc(5vw - 5px) calc(3vw - 5px);
  border-radius: 0 60px;
  max-width: 100%;
  min-width: 16vw;
}
.home-page main .left-side .login-form h2 {
  color: white;
  font-family: "aviano-copper-variable", sans-serif;
  font-size: clamp(17px, 3vw, 23px);
  text-transform: uppercase;
}
.home-page main .left-side .login-form .input-container {
  margin: 20px 0;
  width: 90%;
}
.home-page main .left-side .login-form .input-container .input-box {
  width: 100%;
}
.home-page main .left-side .login-form .input-container .input-box input {
  width: 100%;
  background: rgba(29, 29, 29, 0.6);
  border: 2px solid white;
  padding: 10px 0;
  border-radius: 0.5rem;
}
.home-page main .left-side .login-form .input-container .input-box input[type=text] {
  color: white;
  background: rgba(29, 29, 29, 0.6);
}
.home-page main .left-side .login-form .input-container .input-box input[type=password] {
  color: white;
  background: rgba(29, 29, 29, 0.6);
}
.home-page main .left-side .login-form .input-container .input-box input::-moz-placeholder {
  color: white;
  padding-left: 10px;
}
.home-page main .left-side .login-form .input-container .input-box input::placeholder {
  color: white;
  padding-left: 10px;
}
.home-page main .left-side .login-form .input-container .input-box input:-webkit-autofill {
  background: rgba(29, 29, 29, 0.6);
}
.home-page main .left-side .login-form .input-container .input-box input:autofill {
  background: rgba(29, 29, 29, 0.6);
}
.home-page main .left-side .login-form .input-container button {
  padding: 10px 0;
  background: white;
  border-radius: 0.5rem;
  margin: 20px auto;
  background: white;
  font-weight: bold;
  width: 100%;
  color: black;
  border: none;
  transition: all 0.3s ease-in-out;
}
.home-page main .left-side .login-form .input-container button:hover {
  background: white;
  cursor: pointer;
  transform: translateY(-3px);
  box-shadow: 0 20px 80px -10px white;
}
.home-page main .right-side {
  width: 30%;
  background: url("https://edrd11.creativeworkspace-bz.com/public/images/login-hero-image.png") black;
  height: 100vh;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .home-page main .right-side {
    display: none;
  }
}

/* ----------------Login Form end--------------------*/