/* ====== REGISTER PAGE ONLY ====== */

.reg-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.reg-box {
  background: #fff;
  padding: 20px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.reg-label {
  font-size: 13px;
  font-weight: 600;
}

.reg-input {
  width: 100%;
  padding: 10px;
  margin: 4px 0 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
}

.reg-input:focus {
  border-color: #6C1B8C;
  box-shadow: 0 0 3px rgba(108, 27, 140, 0.3);
  outline: none;
}

.reg-btn {
  width: 100%;
  padding: 14px;
  background: #6C1B8C;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
}

.reg-btn:hover {
  opacity: 0.9;
}

.reg-error {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.reg-bottom-text {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

.reg-bottom-text a {
  color: #6C1B8C;
  font-weight: 700;
  text-decoration: none;
}

/* Password field */

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

.reg-hint {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}
