* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #f0f0f0; min-height: 100vh; }
.container { background: #fff; border: 2px solid #ddd; min-height: 100vh; }
.module-page-header.auth-login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.module-page-header.auth-login-header .module-title {
  margin-left: 15px;
  margin-right: 0;
  text-align: left;
  justify-content: flex-start;
}
.about-link {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  padding: 8px 4px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.section { padding: 14px 12px; border-bottom: 2px solid #e0e0e0; }
.section-title { font-size: 16px; font-weight: 700; color: #495057; margin-bottom: 12px; }
.form { display: flex; flex-direction: column; gap: 10px; }
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  border: 2px solid #dee2e6;
  padding: 10px 12px;
  font-size: 16px;
  font-family: inherit;
  border-radius: 0;
  background: #fff;
  color: #212529;
  -webkit-appearance: none;
  appearance: none;
}
.btn { width: 100%; border: none; padding: 12px 14px; font-size: 15px; font-weight: 600; cursor: pointer; }
.btn-primary { background: #007bff; color: #fff; }
.btn-secondary { background: #f8f9fa; color: #495057; border: 2px solid #dee2e6; }
.btn-link { background: transparent; color: #007bff; border: none; padding: 8px; font-size: 14px; font-weight: 500; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.auth-tabs.hidden { display: none; }
.auth-tab { flex: 1; border: 2px solid #dee2e6; background: #f8f9fa; padding: 10px; font-size: 14px; font-weight: 600; cursor: pointer; }
.auth-tab.active { background: #007bff; border-color: #007bff; color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: flex; flex-direction: column; gap: 10px; }
.message { margin-top: 8px; padding: 10px; font-size: 13px; border: 1px solid #ced4da; background: #f8f9fa; color: #495057; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 14px; font-weight: 600; color: #495057; }
.required-mark { color: #b71c1c; }

.password-errors {
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #b71c1c;
  background: #ffebee;
  border: 1px solid #ef9a9a;
}

.consent-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 4px;
}
.consent-title { font-size: 14px; font-weight: 600; color: #495057; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #495057;
  cursor: pointer;
}
.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.consent-row a { color: #007bff; text-decoration: underline; }

.verify-hint {
  font-size: 14px;
  line-height: 1.45;
  color: #495057;
}
