
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #343541;          
  color: #E5E7EB;
  min-height: 100vh;
  padding-top: 80px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #202123;          
  border-bottom: 1px solid #2A2B32;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 1000;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand h1 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.brand p {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 2px;
}

.logout-btn {
  width: auto !important;
  min-width: unset !important;
  max-width: unset !important;

  background: #DC2626;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.logout-btn:hover {
  background: #B91C1C;
}

.screen {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;      
  align-items: flex-start;
}

.center-screen {
  align-items: center;
}

.content {
  max-width: 1000px;
  margin: 0 auto;         
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 20px;
}


.card {
  background: #202123;          
  border: 1px solid #4B4C5A;
  border-radius: 12px;
  width: 520px;
  max-width: 100%;
  padding: 36px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.card h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #FFFFFF;
}

label {
  display: block;
  text-align: left;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #D1D5DB;
}

input,
select {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #6B7280;
  background: #2A2B32;
  color: #FFFFFF;
  font-size: 1rem;
}

input::placeholder {
  color: #9CA3AF;
}

input:focus,
select:focus {
  outline: none;
  border-color: #2563EB;
}

button {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #1D4ED8;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 1.05rem;
}

.label {
  color: #9CA3AF;
}

.value {
  font-weight: 600;
  color: #FFFFFF;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.5;
}
.footer.footer {
  text-align: center;
  padding: 16px 0;
  font-size: 14px;
  color: #9CA3AF;
  border-top: 1px solid #2A2B32;
  margin-top: 40px;
}

@media (max-width: 600px) {

  body {
    padding-top: 72px;
  }

  .top-bar {
    padding: 0 16px;
    height: auto;
    min-height: 64px;
  }

  .brand h1 {
    font-size: 20px;
  }

  .brand p {
    font-size: 11px;
  }

  .content {
    padding: 20px 12px;
    gap: 20px;
  }

  .card {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }

  input,
  select,
  button {
    font-size: 0.95rem;
  }

  .result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
