body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.registration-container, .form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 400px;
}

.account-container {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

label {
    font-weight: bold;
    display: block;
    margin: 10px 0 6px;
    color: #333;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
}

input:focus, select:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.4);
}

.form-container button, .registration-container button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}

/* Account page specific */
.account-container p {
    font-size: 16px;
    margin-bottom: 20px;
    background-color: #f0f2f5;
    padding: 10px;
    border-radius: 5px;
}

.registration-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px 38px;
  min-width: 320px;
  max-width: 380px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.switch-link {
  text-align: center;
  font-size: 15px;
  color: #666;
}
.switch-link a {
  font-weight: 600;
  color: #3a72e7;
  text-decoration: none;
  transition: color 0.2s;
}
.switch-link a:hover {
  color: #1f4fb0;
  text-decoration: underline;
}
.error-list {
  margin-top: 3px;
  margin-bottom: 8px;
}
.error-message {
  color: #e4572e;
  font-size: 14px;
  margin: 0 0 2px 0;
}
.help-text {
  color: #7b7b7b;
  font-size: 13px;
  margin-top: 2px;
  margin-bottom: 6px;
}
