.center_img_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
}
.max-width-con{
  max-width: 1440px;
  position:relative;
  margin: 0 auto;
}

.center_img {
  height: 334px;
  width: 274px;
  object-fit: cover;
}

.login_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
  gap: 32px;
  font-family: "Inter", sans-serif;
  height: 100vh;
}

.login_input_container {
  width: 422px;
  height: 152px;
  display: flex;
  flex-direction: column;
}

.login_input {
  width: 100%;
  font-family: "Inter", sans-serif;
  gap: 10px;
  flex-direction: space-between;
  display: flex;
  font-size: 20px;
  flex:1;
  border-style:none;
}

input:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
}

.input-box:focus-within{
  border-color: #29abe2;
  outline:none;
}

.login_input::placeholder {
  font-size: 20px;
  font-weight: 400;
  color: #d1d1d1;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 449px;
  width: 652px;
  gap: 32px;
  background-color: #ffffff;
  border-radius: 30px;
}

#err-message{
  display:none;
  color: #E60026;
}



h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 61px;
  color: black;
  line-height: 120%;
  /* margin: 0px; */
  margin-block-start: 0em;
  margin-block-end: 0em;
}

.login-form-icon {
  width: 24px;
  height: 24px;
}

.input-box {
  display:flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #d1d1d1;
  padding: 12px 21px;
}

.input-box-login{
  margin-bottom:20px;
}

.login-form-btns-container {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 35px;
}

.login-form-btn-login {
  font-size: 21px;
  line-height: 120%;
  font-weight: 700;
  padding: 15px 21px;
  background-color: #2a3647;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background-color 0.125s ease;
  &:hover {
    background-color: #28abe2;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  }
}
.border-bottom-div {
  width: 150px;
  height: 3px;
  background-color: #29abe2;
}

.login-form-header-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.login-form-btn-guestlogin {
  border: 1px solid #2a3647;
  font-size: 21px;
  line-height: 120%;
  font-weight: 700;
  padding: 15px 21px;
  background-color: white;
  color: #2a3647;
  border-radius: 8px;
  cursor: pointer;

  transition: all 0.125s ease;
  &:hover {
    color: #28abe2;
    border: 1px solid #28abe2;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  }
}

.sign-up-responsive{
  display:none;
  gap: 35px;
  padding: 77px 0 42px 0;
}

.center_img_container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.center_img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 274px;
  height: 334px;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: top left;
  transition: top 1000ms ease-in-out, left 1000ms ease-in-out,
    width 1000ms ease-in-out, height 1000ms ease-in-out,
    transform 1000ms ease-in-out;
  will-change: top, left, width, height, transform;
  backface-visibility: hidden;
}

.center_img.moved {
  top: 80px;
  left: 77px;
  width: 100px;
  height: 121px;
  transform: translate(0, 0) scale(1);
}

.center_img_container.hidden {
  display: none;
}
.login_container.hidden {
  display: none;
}
.login-site-header.hidden {
  display: none;
}
.login-site-footer.hidden {
  display: none;
}
.login-site-logo-container.hidden {
  display: none;
}

.login-site-logo-container {
  position: absolute;
  top: 80px;
  left: 77px;
  width: 100px;
  height: 121px;
}

.login-site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  position: absolute;
  top: 67px;
  right: 20px;
}
.login-site-header-text {
  width: 153px;
  height: 24px;
}

.login-site-header-to-signup {
  text-decoration: none;
  font-size: 16px;
  line-height: 120%;
  font-weight: 700;
  padding: 15px 16px;
  background-color: #2a3647;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.125s ease;
  &:hover {
    background-color: #28abe2;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  }
}

.login-site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  position: absolute;
  bottom: 30px;
  width: 100%;
}
.login-site-footer a {
  color: #a8a8a8;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.125s ease;
  text-decoration: none;

  &:hover {
    color: #28abe2;
    font-weight: 500;
  }
}

.pointer {
  cursor: pointer;
}

html.skip-animation .center_img_container {
  display: none !important;
}


html.skip-animation .login-site-footer,
html.skip-animation .login-site-logo-container {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
