/*pelin JA-28 Login Page Start*/
@import url(./style.css);
.login-screen {
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  display: flex;
  align-items: center;
  gap: 50px;
  margin: auto auto;
  padding-inline: 30px;
}
.login-img {
  flex: 1;
}
.login-img img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
}

.login {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}
.login-subtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-2xl);
  color: var(--primary-color);
}
.login-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--primary-color);
}

#loginForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.input-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.input-contact,
.input-password {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f2f2f2;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 16px;
}

#emailPhone,
#password {
  border: none;
  background-color: #f2f2f2;
  font-size: var(--font-size-base);
}

.remember-button {
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 10px;
}
.rem-btn {
  position: relative;
  width: 40px;
  height: 20px;
  border-radius: 36px;
  background-color: #e5e5e5;
  cursor: pointer;
}
.rem-circle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 12px;
  background-color: #ffffff;
  transition: left 0.3s ease, right 0.3s ease;
}

.rem-circle.active {
  background-color: var(--primary-color);
  left: 22px;
  right: 2px;
}

.rem-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
}

.login-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  margin: 0 auto;
  color: #ffffff;
  font-family: var(--font-text);
  background-color: var(--primary-color);
  font-size: var(--font-size-base);
  font-weight: 600;
}
.login-input {
  width: 100%;
}
.login-input:focus {
  outline: none;
}
.eye-icon {
  cursor: pointer;
}
.login-helpers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.frgt-password a {
  font-family: var(--font-text);
  color: var(--primary-color);
  font-size: var(--font-size-sm);
  font-weight: 400;
  text-align: right;
}
.line {
  width: 100%;
  border: 1px solid #e5e5e5;
}
.login-with-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #333333;
  height: 48px;
  border-radius: 6px;
}
.login-google-text {
  font-family: var(--font-text);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}
.link-signup {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
}
.text1 {
  color: #1a1a1a;
  font-family: var(--font-text);
  font-size: var(--font-size-sm);
}
.signup {
  color: var(--primary-color);
  font-family: var(--font-text);
  font-size: var(--font-size-sm);
}
.error-message {
  color: red;
  font-family: var(--font-text);
  font-size: var(--font-size-sm);
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .login-img {
    display: none;
  }
}
/*pelin JA-28 Login Page End*/
