/* line 5, app/assets/stylesheets/auth.css.scss */
html, body {
  margin: 0;
  padding: 0;
}

/* line 10, app/assets/stylesheets/auth.css.scss */
.auth-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--auth-bg, #fafafa);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 1rem;
  box-sizing: border-box;
}

/* line 22, app/assets/stylesheets/auth.css.scss */
.auth-container {
  width: 100%;
  max-width: 480px;
  background: var(--auth-container-bg, white);
  border-radius: 12px;
  box-shadow: var(--auth-container-shadow, 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05));
  padding: 2.5rem;
  box-sizing: border-box;
}

/* line 32, app/assets/stylesheets/auth.css.scss */
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* line 37, app/assets/stylesheets/auth.css.scss */
.auth-logo img {
  height: 32px;
  width: auto;
}

/* line 43, app/assets/stylesheets/auth.css.scss */
.auth-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* line 50, app/assets/stylesheets/auth.css.scss */
.auth-logos .auth-logo {
  margin-bottom: 0;
}

/* line 55, app/assets/stylesheets/auth.css.scss */
.auth-logos-plus {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--auth-text-muted, #999);
}

/* line 61, app/assets/stylesheets/auth.css.scss */
.auth-client-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* line 65, app/assets/stylesheets/auth.css.scss */
.auth-client-logo p {
  font-size: 0.875rem;
  color: var(--auth-text-muted, #666);
  margin: 0;
}

/* line 72, app/assets/stylesheets/auth.css.scss */
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 76, app/assets/stylesheets/auth.css.scss */
.auth-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--auth-heading-color, inherit);
  margin: 0 0 0.5rem 0;
}

/* line 83, app/assets/stylesheets/auth.css.scss */
.auth-header p {
  font-size: 0.938rem;
  color: var(--auth-text-muted, #666);
  margin: 0;
}

/* line 91, app/assets/stylesheets/auth.css.scss */
.auth-form .form-group {
  margin-bottom: 1rem;
}

/* line 95, app/assets/stylesheets/auth.css.scss */
.auth-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--auth-text-color, inherit);
  margin-bottom: 0.5rem;
}

/* line 103, app/assets/stylesheets/auth.css.scss */
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.938rem;
  border: 1px solid var(--auth-input-border, #e0e0e0);
  border-radius: 8px;
  background: var(--auth-input-bg, #fff);
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

/* line 117, app/assets/stylesheets/auth.css.scss */
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus,
.auth-form input[type="text"]:focus,
.auth-form input[type="tel"]:focus {
  outline: none;
  border-color: var(--auth-input-focus-border, #333);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* line 123, app/assets/stylesheets/auth.css.scss */
.auth-form input[type="email"]::placeholder,
.auth-form input[type="password"]::placeholder,
.auth-form input[type="text"]::placeholder,
.auth-form input[type="tel"]::placeholder {
  color: #999;
}

/* line 128, app/assets/stylesheets/auth.css.scss */
.auth-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.938rem;
  border: 1px solid var(--auth-input-border, #e0e0e0);
  border-radius: 8px;
  background: var(--auth-input-bg, #fff);
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* line 145, app/assets/stylesheets/auth.css.scss */
.auth-form select:focus {
  outline: none;
  border-color: var(--auth-input-focus-border, #333);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* line 153, app/assets/stylesheets/auth.css.scss */
.auth-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.938rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
}

/* line 170, app/assets/stylesheets/auth.css.scss */
.auth-btn-primary {
  background: #333;
  color: white;
}

/* line 174, app/assets/stylesheets/auth.css.scss */
.auth-btn-primary:hover {
  background: #444;
}

/* line 178, app/assets/stylesheets/auth.css.scss */
.auth-btn-primary:disabled {
  background: #999;
  cursor: not-allowed;
}

/* line 185, app/assets/stylesheets/auth.css.scss */
.auth-btn-primary.btn-primary {
  border-radius: 8px;
}

/* line 189, app/assets/stylesheets/auth.css.scss */
.auth-btn-social {
  background: var(--auth-container-bg, white);
  color: var(--auth-text-color, inherit);
  border: 1px solid var(--auth-input-border, #e0e0e0);
  margin-bottom: 0.75rem;
}

/* line 195, app/assets/stylesheets/auth.css.scss */
.auth-btn-social:hover {
  opacity: 0.9;
}

/* line 199, app/assets/stylesheets/auth.css.scss */
.auth-btn-social svg {
  width: 20px;
  height: 20px;
}

/* line 205, app/assets/stylesheets/auth.css.scss */
.auth-social-buttons {
  margin-bottom: 1.5rem;
}

/* line 209, app/assets/stylesheets/auth.css.scss */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--auth-text-muted, #999);
  font-size: 0.813rem;
}

/* line 216, app/assets/stylesheets/auth.css.scss */
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--auth-divider-color, #e0e0e0);
}

/* line 224, app/assets/stylesheets/auth.css.scss */
.auth-divider span {
  padding: 0 1rem;
}

/* line 229, app/assets/stylesheets/auth.css.scss */
.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--auth-text-muted, #666);
}

/* line 235, app/assets/stylesheets/auth.css.scss */
.auth-links a {
  color: var(--auth-link-color, inherit);
  text-decoration: none;
  font-weight: 500;
}

/* line 240, app/assets/stylesheets/auth.css.scss */
.auth-links a:hover {
  text-decoration: underline;
}

/* line 246, app/assets/stylesheets/auth.css.scss */
.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* line 255, app/assets/stylesheets/auth.css.scss */
.auth-error p {
  margin: 0;
}

/* line 258, app/assets/stylesheets/auth.css.scss */
.auth-error p + p {
  margin-top: 0.25rem;
}

/* line 265, app/assets/stylesheets/auth.css.scss */
.field_with_errors {
  display: contents;
}

/* line 268, app/assets/stylesheets/auth.css.scss */
.field_with_errors input, .field_with_errors select, .field_with_errors textarea {
  border-color: #dc2626;
}

/* line 273, app/assets/stylesheets/auth.css.scss */
.auth-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* line 283, app/assets/stylesheets/auth.css.scss */
.auth-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* line 293, app/assets/stylesheets/auth.css.scss */
.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* line 299, app/assets/stylesheets/auth.css.scss */
.auth-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  margin-top: 0.125rem;
}

/* line 306, app/assets/stylesheets/auth.css.scss */
.auth-checkbox label {
  font-size: 0.875rem;
  color: var(--auth-text-muted, #666);
  margin: 0;
  font-weight: 400;
}

/* line 313, app/assets/stylesheets/auth.css.scss */
.auth-checkbox a {
  color: var(--auth-link-color, inherit);
  text-decoration: underline;
}

/* line 318, app/assets/stylesheets/auth.css.scss */
.auth-checkbox.tight {
  margin-bottom: 0.5rem;
}

/* line 323, app/assets/stylesheets/auth.css.scss */
.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--auth-divider-color, #e0e0e0);
  font-size: 0.813rem;
  color: var(--auth-text-muted, #999);
}

/* line 331, app/assets/stylesheets/auth.css.scss */
.auth-footer a {
  color: var(--auth-link-color, inherit);
  font-weight: 500;
  text-decoration: none;
}

/* line 336, app/assets/stylesheets/auth.css.scss */
.auth-footer a:hover {
  text-decoration: underline;
}

/* line 342, app/assets/stylesheets/auth.css.scss */
.auth-name-row {
  display: flex;
  gap: 1rem;
}

/* line 346, app/assets/stylesheets/auth.css.scss */
.auth-name-row .form-group {
  flex: 1;
}

/* line 352, app/assets/stylesheets/auth.css.scss */
.auth-creator-fields {
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

/* line 356, app/assets/stylesheets/auth.css.scss */
.auth-creator-fields[hidden] {
  display: none;
}

/* line 362, app/assets/stylesheets/auth.css.scss */
.auth-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--auth-text-muted, #666);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

/* line 375, app/assets/stylesheets/auth.css.scss */
.auth-back:hover {
  color: var(--auth-link-color, inherit);
  text-decoration: none;
}

/* line 382, app/assets/stylesheets/auth.css.scss */
.auth-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

/* line 389, app/assets/stylesheets/auth.css.scss */
.auth-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 2px solid var(--auth-input-border, #e0e0e0);
  border-radius: 12px;
  background: var(--auth-container-bg, white);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* line 403, app/assets/stylesheets/auth.css.scss */
.auth-type-card:hover {
  border-color: var(--auth-input-focus-border, #333);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

/* line 410, app/assets/stylesheets/auth.css.scss */
.auth-type-card:active {
  transform: translateY(-1px);
}

/* line 415, app/assets/stylesheets/auth.css.scss */
.auth-type-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--auth-text-muted, #666);
  transition: color 0.2s ease;
}

/* line 425, app/assets/stylesheets/auth.css.scss */
.auth-type-icon svg {
  width: 48px;
  height: 48px;
}

/* line 430, app/assets/stylesheets/auth.css.scss */
.auth-type-card:hover .auth-type-icon {
  color: var(--auth-input-focus-border, #333);
}

/* line 435, app/assets/stylesheets/auth.css.scss */
.auth-type-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--auth-heading-color, inherit);
  margin-bottom: 0.375rem;
}

/* line 442, app/assets/stylesheets/auth.css.scss */
.auth-type-desc {
  font-size: 0.875rem;
  color: var(--auth-text-muted, #666);
}

@media (max-width: 600px) {
  /* line 448, app/assets/stylesheets/auth.css.scss */
  .auth-layout {
    justify-content: flex-start;
    padding: 0;
    background: var(--auth-container-bg, white);
  }
  /* line 454, app/assets/stylesheets/auth.css.scss */
  .auth-container {
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 420px) {
  /* line 463, app/assets/stylesheets/auth.css.scss */
  .auth-type-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  /* line 468, app/assets/stylesheets/auth.css.scss */
  .auth-type-card {
    padding: 1.5rem 1rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
  /* line 475, app/assets/stylesheets/auth.css.scss */
  .auth-type-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  /* line 481, app/assets/stylesheets/auth.css.scss */
  .auth-type-icon svg {
    width: 36px;
    height: 36px;
  }
  /* line 487, app/assets/stylesheets/auth.css.scss */
  .auth-type-content {
    display: flex;
    flex-direction: column;
  }
}
