/* Center the form container */
.signup-container {
  display: grid;
  place-items: center;
  min-height: 80vh;
  /*background: #f9f9fb;*/
  padding: 20px;
}

/* Card look */
.signup-card {
  /*background: #fff;*/
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 24px 32px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.signup-card .title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.signup-card .intro {
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer-note {
  text-align: center;
  margin-top: 20px;
  color: #555;
}

/* Form */
.form-row {
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.errorlist {
  color: #ba2121;
  margin: 4px 0 0;
}

.errornote {
  border: 1px solid #d9534f;
  background: #f2dede;
  color: #a94442;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Buttons */
.submit-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.submit-row .default {
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}


.submit-row .deletelink {
  color: #ba2121;
  text-decoration: none;
  font-weight: 600;
}

.submit-row .deletelink:hover {
  text-decoration: underline;
}
