* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  /* background: #f5f6fa; */
  color: #222;
  min-height: 100vh;
  width: 100%;
}

img.logo {
  max-width: 135px;
  display: block;
  margin-top: 8px;
  margin-left: -15px;
}


.header {
  width: 100%;
  padding: 18px 7% 0;
}

.header span {
  color: #6c63ff;
}

.container {
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 10% 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  flex-wrap: wrap;
  overflow-x: hidden;
  position: relative;
}

.left {
  flex: 1;
  max-width: 616px;
  width: 100%;
}

.left h1 {
  font-size: 72px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-top: 0;
  color: #3D3D3D;
}

.left h1 span {
  background: linear-gradient(90deg, #6038B3, #50C099);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0px;
  font-style: bold;
  margin-top: -60px;
}

.left p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0px;
  color: #3D3D3D;
  max-width: 571px;
  margin-bottom: 70px;
  margin-top: 25px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-top: -8px;
  color: #3D3D3D;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.feature i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(108, 99, 255, 0.1);
  color: #6c63ff;
}

.feature i img {
  margin-left: 0;
  margin-top: 0;
}


.right {
  /* flex: 0 0 600px;
      display: flex; */
  /* justify-content: center; */
}

.card {
  width: 100%;
  max-width: 448px;
  min-height: 620px;
  border-radius: 24px;
  padding: 72px 38px 40px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  border-top: 1px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(to right, #6038b3 0%, #50c099 100%);
  /* background-origin: border-box; */
  background-clip: padding-box, border-box;
  ;
}

.card::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: url(../images/green-bg-signup.svg);
  background-repeat: no-repeat;
  top: -20px;
  right: -61%;
  opacity: 0.2;
}

.card::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: url(../images/green-bg-signup-bottom.svg);
  background-repeat: no-repeat;
  bottom: -136px;
  right: -60px;
  opacity: 0.2;
}

@media (min-width:1500px) {
  .card::before {
    right: -43%;
  }
}

.container::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: url(../images/bg-center-circle.svg);
  background-repeat: no-repeat;
  opacity: 0.2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.card>* {
  position: relative;
  z-index: 1;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #3D3D3D;
  font-weight: bold;
  line-height: 32px;
}

.sub {
  color: #3D3D3D;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 20px;

}

form label {
  display: block;
  margin: 18px 0 10px;
  font-weight: 700;
  color: #3D3D3D;
  letter-spacing: 0.6px;
  font-size: 12px;
  padding-left: 4px;

}

.input-box {
  display: flex;
  align-items: center;
  background: #f4f1fa;
  border: 1px solid #e5e1ef;
  border-radius: 60px;
  padding: 0 16px;
  height: 57px;
}

.input-box i {
  color: #777;
  margin-right: 16px;
}

.input-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: #333;
}

.input-box input::placeholder {
  color: #79747E99;
  font-size: 16px;
  line-height: 100%;

}

.btn {
  width: 100%;
  margin-top: 27px;
  border: none;
  border-radius: 9999px;
  padding: 18px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  background: linear-gradient(90deg, #6038B3, #50C099);
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.divider {
  margin: 32px 0;
  text-align: center;
  font-size: 12px;
  color: #3D3D3D;
  position: relative;
  font-weight: bold;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 98px;
  height: 1px;
  background: #ddd;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.social {
  border: 1px solid #CAC4D033;
  background: #F3F0F5;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 46px;
  color: #3D3D3D;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social i {
  display: flex;
  margin-right: 10px;
}

.login {
  margin-top: 40px;
  text-align: center;
  color: #3D3D3D;
  font-size: 0.95rem;
  font-size: 14px;
  font-weight: 400;
}

.login a {
  color: #6038B3;
  text-decoration: none;
  font-weight: 700;
}

.footer {
  padding: 50px 20px 48px;
  text-align: center;
  border-top: 1px solid #CAC4D033;
  background: #F8F7F9;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 27px;

}

.footer-links a {
  text-decoration: none;
  color: #3D3D3D;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 12px;
  color: rgba(61, 61, 61, 0.5);
  font-weight: bold;
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .container {
    gap: 40px;
  }

  .right {
    flex-basis: 420px;
  }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px 40px;
  }

  .left {
    max-width: 100%;
  }

  .left h1 {
    font-size: 56px;
    line-height: 1.05;
    text-align: center;
  }

  .left p {
    margin: 20px auto 40px;
    text-align: center;
  }

  .right {
    width: 100%;
    flex-basis: 100%;
  }

  .card {
    min-height: auto;
    padding: 48px 32px 32px;
  }

  .card::before {
    width: 320px;
    height: 240px;
    top: -90px;
    right: -80px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 22px 24px;
    font-size: 1.7rem;
  }

  .container {
    padding: 10px 16px 40px;
  }

  .left h1 {
    font-size: 42px;
  }

  .left p {
    font-size: 16px;
  }

  .card {
    padding: 32px 24px 28px;
    border-radius: 22px;
  }

  .card::before {
    display: none;
  }

  .socials {
    grid-template-columns: 1fr;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .divider::before,
  .divider::after {
    width: 24%;
  }
}

.password-box {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #79747E;
  font-size: 18px;
}

.password-box input {
  padding-right: 45px;
}