@import url('https://fonts.googleapis.com/css2?family=Reddit+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

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

body {
  font-family: "Reddit Mono", monospace;
  font-size: 14px;
  background-color: #fff6eb;
}

.signup-container {
  width: 90%;
  max-width: 500px;
  margin: 25px auto;
}

.join {
  font-family: "Fjalla One", sans-serif;
  margin-bottom: 1rem;
  text-align: center;
}

form {
  padding: 20px;
  background: #ffe135; 
  color: #000;
  border-radius: 4px;
}

form label,
form input,
form select,
form textarea,
form button {
  border: 0;
  margin-bottom: 10px; 
  display: block;
  width: 100%;
}

form input,
form select,
form textarea {
  height: 35px;
  line-height: 1.5;
  background: #fff;
  color: #000;
  padding: 0 10px;
  box-sizing: border-box;
}

form textarea {
  height: auto;
  resize: vertical;
}

form button {
  height: 40px;
  line-height: 1.5;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #333;
}

form .error {
  color: #ff0000;
  font-family: "Reddit Mono", monospace;
}

::placeholder {
  color: #888; 
}

form input:focus,
form select:focus,
form textarea:focus,
form button:focus {
  outline: 2px solid #e67e22; 
}

.article-reference {
  margin-top: 15px;
}

.article-reference a {
  color: #e67e22;
  text-decoration: none;
}

.article-reference a:hover {
  text-decoration: underline;
}
