﻿body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
}

.bg-custom {
  background-color: #0f0f17;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://s3-alpha-sig.figma.com/img/8ba3/1395/05cbf75f8c6dc5adb0bc86d7141c1df5?Expires=1745798400&Key-Pair-Id=APKAQ4GOSFWCW27IBOMQ&Signature=UqaUqKYvUrLnjt64KbsYbR6Jgy0BXuBa-MxAp3KGKgHbHtcZT~xUgVtv3NDkGTbWnbqyti-toyK9sKs~rhz4tH4bOGli3f34yqCdxQYHna~vnMsYSvvM5O8k6tpk7k7w4zn7rKYg3g7D~NjqAd5Bwa0ZrknFan3XugP1NFK6T4CFLW6jci1GzO6rqty8TqiSOkxJ4SEEWEgjUGE113hhDuKnWC5w2p8dgj0g-KO2ZOnx-Oz06tcH4svoPo25dRqzZpOOQLMmUC12KjBOHKMjodXo4~Re8aedSFbF4Dw9J~Gr18YUAPfRx9uCwi696aUYyJA4Ojkl2gm-~ywUlo4nig__");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 2rem;
  max-width: 1140px;
  width: 100%;
}

.card {
  background-color: #1e1e2a;
  border-radius: 0.75rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}

.logo {
  margin-bottom: 2rem;
}

.logo img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #d1d5db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeIn 1s ease-out;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  background: linear-gradient(45deg, #3b82f6, #60a5fa);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button:hover {
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.button:active {
  transform: translateY(0);
}

.logout-button {
  background: linear-gradient(45deg, #ef4444, #f87171);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.logout-button:hover {
  background: linear-gradient(45deg, #dc2626, #ef4444);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.footer {
  margin-top: 1rem;
  font-size: 1rem;
  color: #6b7280;
}

.logout {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #34495e;
  border-radius: 0.3rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .title {
    font-size: 3rem;
  }

  .button {
    padding: 1.25rem 3rem;
  }
}
