*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #222;
  font-weight: 400;
}
/*
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
} */
.login-section {
  min-height: 100vh;
  width: 100vw;
  background-image: url(/assets/profile/bg.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  place-content: center;
}

.login-form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  min-height: 480px;
  display: flex;
  justify-content: space-between;
}

.login-form-left-side,
.login-form-right-side {
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}

.form-wrapper {
  width: 100%;
}
.form-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-box .form-logo {
  width: 250px;
}
.form-box .form-logo img {
  max-width: 100%;
}

.title-container {
  margin: 20px 0;
}

.form-field input {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}
.form-field input:focus {
  outline: none;
}

.form-btn-container {
  margin-top: 10px;
}
.form-login-btn {
  border-radius: 20px;
  border: 1px solid #2fc296;
  background-color: #2fc296;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
}

.form-login-btn:hover {
  background-color: #fff;
  color: #222;
  border-color: #222;
}

.login-form-right-side {
  background: linear-gradient(to right bottom, #2fc296, #44aa72);
}

.login-form-right-side h1,
.login-form-right-side p {
  color: #fff;
}

.login-form-right-side p {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
  font-weight: 400;
}

@media (max-width: 765px) {
  .login-form-container {
    flex-direction: column-reverse;
    border-radius: 0px;
  }

  .login-form-container {
    width: 100%;
  }

  .login-form-left-side,
  .login-form-right-side {
    width: 100%;
  }

  .login-form-right-side {
    min-height: 250px;
  }
  .login-form-left-side {
    padding: 30px;
  }
}
