@import url("../../../styles.css");
:root {
  --bg-main: #0e1117;
  --bg-card: #161b22;
  --bg-input: #0e1117;
  --text-main: #e6edf3;
  --text-muted: #8b949e;
  --border: #262c36;
  --radius: 10px;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #111827, #0e1117);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  overflow-y: auto;
}

main#access .card {
  width: 420px;
  margin: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
main#access .card .header {
  text-align: center;
  margin-bottom: 28px;
}
main#access .card .header h1 {
  margin: 0;
  font-size: 22px;
}
main#access .card .header p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 20px;
}
main#access .card .field {
  margin-bottom: 18px;
}
main#access .card .field label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
main#access .card .field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--text-main);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
main#access .card .field input:focus {
  border-color: royalblue;
  box-shadow: 0 0 0 3px rgba(79, 110, 247, 0.2);
}
main#access .card .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 22px;
}
main#access .card .options a {
  color: #60a5fa;
  text-decoration: none;
}
main#access .card .options a:hover {
  text-decoration: underline;
}
main#access .card button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: royalblue;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.05s;
}
main#access .card button:hover {
  background: #3c59d9;
}
main#access .card button:active {
  transform: scale(0.98);
}
main#access .card .footer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
main#access .card .footer a {
  color: #60a5fa;
  text-decoration: none;
  margin-left: 4px;
}
main#access .checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid royalblue;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
main#access .checkbox:before {
  content: "";
  background-color: royalblue;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
main#access .checkbox:checked:before {
  transform: translate(-50%, -50%) scale(1);
}
main#access .checkbox-label {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  color: var(--text-aside);
}

main#access,
main#creating {
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  overflow-y: auto;
}
main#access .logo,
main#creating .logo {
  width: max-content;
  margin: 0 auto;
}
main#access .logo img,
main#creating .logo img {
  width: 280px;
}
main#access .copy,
main#creating .copy {
  display: flex;
  align-items: center;
  gap: 8px;
  place-content: center;
}
main#access .copy p,
main#creating .copy p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
main#access .copy a,
main#creating .copy a {
  color: #fff;
  font-weight: 500;
  display: flex;
  gap: 5px;
}
main#access .copy a img,
main#creating .copy a img {
  width: 24px;
}

main#creating .card {
  width: min(860px, 100%);
  background: linear-gradient(180deg, rgba(15, 23, 34, 0.78), rgba(15, 23, 34, 0.45));
  border: 1px solid rgba(34, 48, 68, 0.65);
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  padding: 28px 26px 22px;
  margin: 0 auto;
}
main#creating .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
main#creating .brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 240px;
}
main#creating .brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 8px;
}
main#creating .brand .name strong {
  font-size: 16px;
  letter-spacing: 0.3px;
}
main#creating .brand .name span {
  font-size: 14px;
  color: #a9b6c7;
}
main#creating .avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(45, 212, 191, 0.95), rgba(99, 102, 241, 0.9));
  box-shadow: 0 10px 26px rgba(99, 102, 241, 0.25), 0 10px 30px rgba(45, 212, 191, 0.18);
  position: relative;
  overflow: hidden;
}
main#creating .avatar:before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.35), transparent 30%, rgba(255, 255, 255, 0.18));
  animation: spin 3.5s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
main#creating .statusPill {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(34, 48, 68, 0.7);
  background: rgba(0, 0, 0, 0.18);
}
main#creating .statusPill .label {
  font-size: 12px;
  color: #a9b6c7;
}
main#creating .statusPill .value {
  font-size: 12px;
  opacity: 0.95;
}
main#creating .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fbbf24;
  box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.16);
  animation: pulse 1.4s ease-in-out infinite;
}
main#creating .footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  flex-wrap: wrap;
  color: rgba(169, 182, 199, 0.92);
  font-size: 12px;
  border-top: 1px solid rgba(34, 48, 68, 0.45);
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}
main#creating .hero {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 820px) {
  main#creating .hero {
    grid-template-columns: 1fr;
  }
}
main#creating h1 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: 0.2px;
}
main#creating .subtitle {
  margin: 0 0 18px;
  color: #a9b6c7;
  font-size: 16px;
  line-height: 1.55;
}
main#creating .rotator {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(34, 48, 68, 0.65);
  background: rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
}
main#creating .rotator .spark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2dd4bf;
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.14);
  flex: 0 0 auto;
}
main#creating .rotator .rotatorText {
  font-size: 13px;
  color: rgba(232, 238, 247, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main#creating .side {
  border-radius: 18px;
  border: 1px solid rgba(34, 48, 68, 0.65);
  background: rgba(0, 0, 0, 0.14);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 20px;
}
main#creating .spinner {
  width: 88px;
  height: 88px;
  margin: 6px auto 14px;
  border-radius: 999px;
  border: 2px solid rgba(232, 238, 247, 0.14);
  border-top-color: rgba(232, 238, 247, 0.78);
  animation: spin 1.05s linear infinite;
  position: relative;
}
main#creating .spinner:after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 2px solid rgba(45, 212, 191, 0.12);
  border-bottom-color: rgba(45, 212, 191, 0.82);
  animation: spin 1.6s linear reverse infinite;
}
main#creating .progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(232, 238, 247, 0.09);
  overflow: hidden;
  border: 1px solid rgba(34, 48, 68, 0.55);
  position: relative;
}
main#creating .bar {
  height: 100%;
  width: 35%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.85), rgba(99, 102, 241, 0.85));
  animation: indeterminate 2.1s ease-in-out infinite;
}
@keyframes indeterminate {
  0% {
    transform: translateX(-120%);
    width: 35%;
  }
  50% {
    transform: translateX(60%);
    width: 55%;
  }
  100% {
    transform: translateX(240%);
    width: 35%;
  }
}
main#creating .sideTitle {
  margin: 12px 0 4px;
  font-size: 14px;
  color: rgba(232, 238, 247, 0.9);
  text-align: left;
  font-weight: 600;
}
main#creating .sideMeta {
  margin: 0 0 12px;
  font-size: 13px;
  color: #a9b6c7;
  text-align: left;
  line-height: 1.45;
}
main#creating .kv {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 12px;
  margin-top: 12px;
  font-size: 12px;
  color: #a9b6c7;
  padding-top: 12px;
  border-top: 1px solid rgba(34, 48, 68, 0.45);
}
main#creating .kv .k {
  color: rgba(169, 182, 199, 0.95);
}
main#creating .kv .v {
  color: rgba(232, 238, 247, 0.92);
}
main#creating .actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
main#creating .btn {
  appearance: none;
  border: 1px solid rgba(34, 48, 68, 0.75);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(232, 238, 247, 0.92);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease;
  user-select: none;
}
main#creating .btn:hover {
  background: rgba(0, 0, 0, 0.26);
  border-color: rgba(65, 88, 122, 0.9);
}
main#creating .btn:active {
  transform: translateY(1px);
}
main#creating .btn.primary {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.12);
}
main#creating .btn.primary:hover {
  background: rgba(45, 212, 191, 0.16);
  border-color: rgba(45, 212, 191, 0.55);
}
main#creating .tiny {
  font-size: 12px;
  color: #a9b6c7;
  line-height: 1.55;
}

@media (max-width: 768px) {
  main#access {
    gap: 25px;
  }
  main#access .card {
    width: 90%;
  }
}

/*# sourceMappingURL=AccessComponent.css.map */
