@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  padding: 0.5rem;
  background-color: #fafafa;
  min-height: 100vh;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page-title {
  position: relative;
  text-align: center;
  font-size: 2rem;
  color: #4338ca;
  padding-bottom: 0.75rem;
}

.page-title::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: #4338ca;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.form-section {
  background-color: #fff;
  width: 25rem;
  max-width: 100%;
  padding: 1.25rem 1.75rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 0.25rem 0.4rem -0.25rem rgb(0 0 0 / 0.1);
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 1rem;
  color: #000;
}

.form-input {
  padding: 0.6rem 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
}

.form-input:focus {
  border-color: #4338ca;
  outline: none;
}

.form-group-checkbox {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.submit-button {
  background-color: #4338ca;
  width: 100%;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #152497;
}

.switch-link {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 1rem;
}

.link {
  color: #4338ca;
  text-decoration: none;
  font-weight: bold;
}

.link:hover {
  text-decoration: underline;
}
