:root {
  --primary-color: rgba(224, 0, 0, 1);
  --font-popin: "Poppins", sans-serif;
  --font-nution: "Nunito Sans", sans-serif;
  --font-opensans: "Open Sans", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.login {
  padding: 40px 0px;
}
.login-form-content {
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  padding: 0px 320px;
}
.register-form-content {
  padding: 0px 320px;
}
.register-form-content {
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  /*padding: 0px 400px !important;*/
}
.login-form-content h1 {
  font-size: 30px;
  font-family: var(--font-popin);
  font-weight: 600;
  margin-bottom: 20px !important;
  text-align: center;
}
.login-form-content label {
  font-size: 13px;
  font-family: var(--font-popin);
  margin-top: 10px !important;
  font-weight: 500;
  color: black;
}
.login-form-content input {
  height: 50px;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-opensans);
  padding: 0px 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: none;
  background-color: rgba(242, 242, 242, 1);
  margin-top: 5px;
}
.password-wrapper {
  position: relative;
  display: inline-block;
}

.password-wrapper input {
  padding-right: 40px; /* space for the icon */
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 46%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

.forget-passward-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}
.confirmation-box {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.confirmation-box .check-box {
  height: 18px;
  border-radius: 20px !important;
  width: 18px;
  margin-top: 17px;
}
.confirmation-box h6 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-top: 5px !important;
  font-family: var(--font-opensans);
  color: rgba(79, 79, 79, 1);
}
.forget-passward-text {
  margin: 0;
  text-decoration: none;
  font-family: var(--font-popin);
  color: var(--primary-color);
  font-weight: 600;
}
.login-button {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  font-family: var(--font-popin);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  height: 50px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 20px;
}
.options-box {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  /* gap: 10px; */
  align-items: center;
}
.options-box hr {
  height: 1px;
  width: 29%;
  background-color: rgba(224, 224, 224, 1);
}
.options-box p {
  font-size: 14px;
  font-family: var(--font-opensans);
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(79, 79, 79, 1);
}
.google-button {
  height: 50px;
  cursor: pointer;
  gap: 7px;
  width: 100%;
  border: 1px solid rgba(224, 224, 224, 1);
  color: rgba(79, 79, 79, 1);
  display: flex;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  border-radius: 6px;
  font-size: 15px;
  background-color: transparent;
  margin-top: 20px;
  font-family: var(--font-popin);
}
.fb-button {
  height: 50px;
  cursor: pointer;
  gap: 7px;
  width: 100%;
  border: 1px solid rgba(224, 224, 224, 1);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  border-radius: 6px;
  font-size: 15px;
  background-color: rgba(71, 89, 147, 1);
  margin-top: 10px;
  font-family: var(--font-popin);
}
.insta-button {
  height: 50px;
  gap: 7px;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(224, 224, 224, 1);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  border-radius: 6px;
  font-size: 15px;
  background: linear-gradient(
    89.22deg,
    #f8a452 0.1%,
    #e85c6a 23.79%,
    #ca2d89 47.79%,
    #8042bb 71.24%,
    #5757d0 98.64%
  );

  margin-top: 10px;
  font-family: var(--font-popin);
}
.register-link {
  font-size: 16px;
  font-family: var(--font-opensans);
  margin: 0;
  font-weight: 400;
  color: #919191;
  margin-top: 20px;
  text-align: center;
}
.register-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font-opensans);
  margin: 0;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .login-form-content {
    padding: 0px 100px !important;
  }
}
@media (max-width: 636px) {
  .login-form-content {
    padding: 0px 15px !important;
  }
  .options-box hr {
    height: 1px;
    width: 20% !important;
    background-color: rgba(224, 224, 224, 1);
  }
}
