.login-container {
  width: 320px;
}

.logo {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.card {
  background: white;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(27,31,36,0.04);
}

.input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
}

.input:focus {
  outline: none;
  border-color: #7B5CFF;
  box-shadow: 0 0 0 2px rgba(123,92,255,0.15);
}

.primary-button {
  width: 100%;
  background: #7B5CFF;
  color: white;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.primary-button:hover {
  background: #6A4FE0;
}

.divider {
  text-align: center;
  margin: 16px 0;
  font-size: 13px;
  color: #57606a;
}

.signup-link {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #6b7280; /* subtle gray */
}

.signup-link a {
  color: #7B5CFF; /* same violet as button */
  font-weight: 500;
  text-decoration: none;
}

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

.form-error {
  font-size: 13px;
  color: #dc2626;
  margin-top: -6px;
}

.hidden {
  display: none;
}

.verify-copy {
  text-align: center;
  margin-bottom: 18px;
}

.verify-title {
    margin-top:-20px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.verify-text {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 40px;
}

.form-success {
  font-size: 13px;
  color: #15803d;
  margin-bottom: 12px;
}

.verify-card {
  background: white;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 28px;
  padding-top:0px;
  box-shadow: 0 1px 0 rgba(27,31,36,0.04);
}

.form-success {
  font-size: 13px;
  color: #15803d;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.secondary-link {
  text-align: center;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}

.secondary-link a {
  color: #7B5CFF;
  text-decoration: none;
}

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