/* ===== Google Font Import - Poformsins ===== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 209, 160);
  background: linear-gradient(
    180deg,
    rgba(255, 209, 160, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(191, 255, 155, 1) 100%
  );
}

.container {
  position: relative;
  max-width: 430px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 20px;
}

.container .forms {
  display: flex;
  align-items: center;
  height: 540px;
  width: 200%;
  transition: height 0.2s ease;
}

.container .form {
  width: 50%;
  padding: 30px;
  background-color: #fff;
  transition: margin-left 0.18s ease;
}

.container.active .login {
  margin-left: -50%;
  opacity: 0;
  transition: margin-left 0.18s ease, opacity 0.15s ease;
}

.container .signup {
  opacity: 0;
  transition: opacity 0.09s ease;
}
.container.active .signup {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.container.active .forms {
  height: 600px;
}
.container .form .title {
  position: relative;
  font-size: 27px;
  font-weight: 600;
}

.form .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  background-color: #4070f4;
  border-radius: 25px;
}

.form .input-field {
  position: relative;
  height: 50px;
  width: 100%;
  margin-top: 30px;
}

.input-field input {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 0 35px;
  border: none;
  outline: none;
  font-size: 16px;
  border-bottom: 2px solid #ccc;
  border-top: 2px solid transparent;
  transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) {
  border-bottom-color: #4070f4;
}

.input-field i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 23px;
  transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~ i {
  color: #4070f4;
}

.input-field i.icon {
  left: 0;
}
.input-field i.showHidePw {
  right: 0;
  cursor: pointer;
  padding: 10px;
}

.form .input-field-1 {
  position: relative;
  height: 25px;
  width: 100%;
  margin-top: 30px;
}

.input-field-1 input {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 0 35px;
  border: none;
  outline: none;
  font-size: 16px;
  border-bottom: 2px solid #ccc;
  border-top: 2px solid transparent;
  transition: all 0.2s ease;
}

.input-field-1 input:is(:focus, :valid) {
  border-bottom-color: #4070f4;
}

.input-field-1 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 23px;
  transition: all 0.2s ease;
}

.input-field-1 input:is(:focus, :valid) ~ i {
  color: #4070f4;
}

.input-field-1 i.icon {
  left: 0;
}
.input-field-1 i.showHidePw {
  right: 0;
  cursor: pointer;
  padding: 10px;
}

.form .checkbox-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  color: #000080;
}

.checkbox-text .checkbox-content {
  display: flex;
  align-items: center;
}

.checkbox-content input {
  margin: 0 8px -2px 4px;
  accent-color: #000080;
}

.form .text {
  color: #333;
  font-size: 14px;
}

.form a.text {
  color: #6262e3;
  text-decoration: none;
}
.form a.text:hover {
  text-decoration: underline;
}

.form .button {
  margin-top: 35px;
  height: 40px;
}

.form .button input {
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 6px;

  background: linear-gradient(135deg, #6262e3, #000080);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input:hover {
  background: linear-gradient(-135deg, #6262e3, #000080);
}

.form .login-signup {
  margin-top: 30px;
  text-align: center;
}

.login-icons {
  display: flex;
  justify-content: space-evenly;
  margin: 10px;
  padding: 0px 35px;
}
.login-icons a {
  text-decoration: none;
}
.fa-brands {
  padding: 10px 10px;
}
.fa-facebook-f {
  padding: 23px 17px;
  background-color: #4267b2;
  color: white;
  border-radius: 50%;
}

.fa-twitter {
  background-color: #00acee;
  color: white;
  border-radius: 50%;
  padding: 23px 13px;
}
.google-icon {
  padding: 5px 11px;
  font-size: 30px;
  font-weight: 700;
  background: conic-gradient(
    from -30deg,
    #db3236 0deg,
    #db3236 90deg,
    #4885ed 90deg,
    #4885ed 180deg,
    #3cba54 180deg,
    #3cba54 270deg,
    #f4c20d 270deg,
    #f4c20d 360deg
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.btn-g {
  background-color: white;
  border: 1px solid #9f9b9b;
  border-radius: 50%;
}
.btn-1 {
  background-color: white;
  border: 1px solid #9f9b9b;
  border-radius: 50%;
}
.btn-g a {
  text-decoration: none;
}
.btn-g:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.btn-1:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.or-line {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 10px;
}
.underline {
  width: 300px;

  height: 1px;
  background-color: black;
}
.or {
  border: 2px solid #5d5d5d;
  border-radius: 50%;
  padding: 0px 4px;
}
.or-login {
  display: flex;
  justify-content: center;
}
