:root {
  color-scheme: light;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f3f4f6;
  color: #111827;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(135deg, #f9fafb 0%, #eef2ff 100%);
}

body,
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

input {
  outline: none;
}

#root {
  min-height: 100vh;
}

.auth-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.layout {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  width: 300px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.brand__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.main-link,
.menu-link,
.auth-link {
  text-decoration: none;
  transition: 0.2s ease;
}

.main-link {
  color: #111111;
  font-size: 16px;
  font-weight: 800;
}

.main-link:hover,
.main-link--active {
  color: #2563eb;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-section__label {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-section__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-link {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.menu-link:hover,
.menu-link--active {
  color: #111827;
}

.account-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f9fafb;
}

.account-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dbeafe;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.account-card__name {
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.account-card__email {
  color: #6b7280;
  font-size: 12px;
  margin-top: 2px;
}

.content {
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-card,
.auth-card {
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.page-card h1,
.auth-card h1 {
  margin: 0 0 12px;
  font-size: 34px;
  color: #111827;
}

.page-card p,
.auth-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-card {
  max-width: 480px;
  padding: 32px;
}

.auth-card__header {
  margin-bottom: 24px;
}

.auth-card__header--welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.auth-card__logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.auth-card__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-card__section-title {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.auth-card__footer {
  margin-top: 16px;
  color: #9ca3af;
  font-size: 12px;
}

.auth-card__footer a,
.auth-helper-links a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

.auth-card__footer a:hover,
.auth-helper-links a:hover {
  color: #6b7280;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field span {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
}

.form-field input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.primary-button,
.secondary-button,
.oauth-button {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.primary-button {
  background: #111827;
  color: #ffffff;
}

.primary-button:hover {
  background: #1f2937;
}

.secondary-button {
  background: #e5e7eb;
  color: #111827;
}

.secondary-button:hover {
  background: #d1d5db;
}

.oauth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.oauth-button {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.oauth-button:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

.auth-divider {
  margin: 22px 0;
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-message {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
}

.form-message--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-message--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.auth-helper-links,
.auth-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-helper-links {
  margin-top: 14px;
}

.auth-actions {
  margin-top: 20px;
}

.account-summary {
  display: grid;
  gap: 10px;
  color: #374151;
  font-size: 15px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .content {
    padding: 24px;
  }

  .page-card,
  .auth-card {
    padding: 24px;
  }
}


/*# sourceMappingURL=/src.78399e21.css.map */