.login-wrapper {
  display: flex;
  width: 100%;
  min-height: 600px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* LEFT */
.login-wrapper .login-left {
  width: 310px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  /* border-radius: 20px; */
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.login-wrapper .login-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-wrapper .login-left .img-letfm {
  display: none;
}

/* RIGHT */
.login-wrapper .login-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* max-width: 40%; */
  margin-left: 20%;
  margin-top: 5%;
  padding: 60px;
  min-height: 100vh;
}

.login-wrapper .login-right .login-form {
  max-width: 450px;
  margin: 0 auto;
}

/* HEADER */
.login-wrapper .login-header h1 {
  font-size: 32px;
  color: #0d063e;
  margin-bottom: 16px;
}

.login-wrapper .login-header p {
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTON GOOGLE*/
.login-wrapper .btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 17px 33px -2px rgba(28, 39, 49, 0.05);
  cursor: pointer;
  transition: all 0.25s ease;
}

.login-wrapper .btn-google:hover {
  background: #f9fafb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.login-wrapper .btn-google img {
  width: 20px;
}

/* FOOTER LOGIN */
.login-wrapper .login-footer {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: #6b7280;
}

.login-wrapper .login-footer a {
  color: #0d063e;
  text-decoration: none;
  font-weight: 600;
}

.login-wrapper .login-footer a:hover {
  text-decoration: underline;
}

.login-wrapper .login-account {
  color: #1a2128;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  width: 100%;
  display: block;
  text-align: center;
  margin: 40px 0;
}

.login-wrapper .login-account a {
  color: #0d063e;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
}

.login-wrapper .login-copy {
  font-size: 13px;
  line-height: 14px;
  color: #6b7280;
  font-weight: 400;
  padding: 0px 15px;
  margin-top: 18px;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
  }

  .login-wrapper .login-left {
    position: relative;
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
    border-radius: 0;
  }

  .login-wrapper .login-left .img-leftd {
    display: none;
  }

  .login-wrapper .login-left .img-leftm {
    display: block;
  }

  .login-wrapper .login-right {
    margin: 0 auto;
    max-width: fit-content;
    padding: 25px 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .login-wrapper .login-left {
    width: 230px !important;
  }
}
