* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

:root {
  --body: #667085;
  --primary-color: #001b3d;
  --secondary-color: #087443;
  --accent-color: #f2b544;
  --main-bg: #f7f9f8;
  --heading-color: #102033;
  --second-text: #667085;
  --border-color: #e4e7ec;
  --success-green: #12b76a;
  --error-red: #d92d20;
  --warning-color: #f79009;
  --icon-color: #fff;
  --icon-hover-bg: #12b76a;
  --button-bg: #087443;
  --white-text-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}

button,
input,
select,
option,
optgroup,
textarea {
  outline: none;
  border: none;
}

/*  */
.signup-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup {
  background-color: var(--main-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 500px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.signup-header h1 {
  text-align: center;
  font-weight: 800;
  color: var(--heading-color);
}

.signup-header p {
  text-align: center;
  color: var(--second-text);
  font-size: 14px;
}

.signup form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 400px;
}

.signup form input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  outline: none;
  border-radius: 4px;
}

.signup form button {
  background-color: var(--button-bg);
  color: var(--white-text-color);
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  width: 100%;
}

.change-state {
  margin-top: 20px;
  text-align: left;
  font-size: 14px;
}

@media (max-width: 480px) {
  .signup {
    width: 320px;
    padding: 10px;
  }

  .signup h1 {
    font-size: 24px;
  }

  .signup form input {
    width: 73%;
  }

  .signup form button {
    width: 160px;
  }
}
