body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

header {
  padding: 5px 0;
  text-align: center;
  background-color: #a8d5a2;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #8fbc8f;
}

h1 {
  text-align: center;
  margin: 30px 0;
  color: #222;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  padding: 25px 30px;
  background-color: #f9fdf9;
  border: 1.5px solid #c7e1c7;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(143, 188, 143, 0.2);
}

.formPair {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.formPair label {
  font-weight: bold;
}

.formPair input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.formPair input:focus {
  outline: none;
  border-color: #8fbc8f;
}

button {
  padding: 12px;
  font-size: 16px;
  background-color: #a8d5a2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #7cb977;
}

/* #create-accs{
    display: flex;
    justify-content: space-between;
} */

/* #i-registerBtn,
#s-registerBtn {
    width: 240px;
} */
