.sign-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 20px 0;
  background: #fff;
  justify-content: space-around;
  margin: 1.2rem auto;
  margin-bottom: 6.2rem;
  max-width: 75rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
}

.signup-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-img img {
  height: 35rem;
}

.signup-form {
  flex: 1;
  background: #ebebeb;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  padding: 40px;
  min-width: 320px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.signup-form h2 {
  margin-bottom: 26px;
  font-size: 2rem;
  color: #111;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: left;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #161616;
  font-weight: 500;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='tel'],
.form-group input[type='password'] {
  padding: 10px 16px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  background: #f9f9f9;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
  font-family: inherit;
}

.form-group input:focus {
  border-color: #090909;
  background: #fff;
}

.submit-btn {
  background: #111;
  color: #fff;
  padding: 11px 0;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover,
.submit-btn:focus {
  background: #090909;
}

.login-link {
  margin-top: 14px;
  text-align: center;
  font-size: 1rem;
  color: #444;
}
.login-link a {
  color: #1641af;
  margin-left: 4px;
  font-weight: 500;
  text-decoration: none;
  text-decoration: underline;
}
.login-link a:hover {
  color: #1449cf;
}

/* Responsive */
@media (max-width: 900px) {
  .sign-cont {
    gap: 10px;
    padding: 0px 0;
    min-height: 0vh;
    max-width: 40rem;
    margin: 1rem auto;
  }
  .signup-img img {
    height: 16rem;
  }
  .signup-form {
    padding: 25px;
  }
}
@media (max-width: 600px) {
  .sign-cont {
    padding: 0 0;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 24rem;
  }
  .signup-form {
    min-width: 0;
    width: 92vw;
    padding: 2rem 18px;
  }
  .signup-img img {
    max-width: 90vw;
  }
}
