/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL STYLES */
body, html {
  height: 100%;
  background-color: black;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* SPLASH SCREEN */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

#splash-logo {
  width: 300px;
  opacity: 1;
  animation: fadeOut 2s ease-in-out 2s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

/* MAIN CONTENT */
.hidden {
  display: none;
}

#main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

/* MAIN LOGO AFTER SPLASH */
.main-logo-container {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.main-logo {
  width: 300px;
  max-width: 90%;
}

/* BUTTONS */
.buttons {
  margin-bottom: 80px;
}

.buttons button {
  margin: 10px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: yellow;
  border: none;
  color: black;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.buttons button:hover {
  background-color: #ffd700;
}

/* FOOTER */
footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 12px;
  color: white;
}

.footer-center {
  text-align: center;
  margin: 0 auto;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: white;
  text-decoration: underline;
  font-size: 12px;
}
/* LOGIN PAGE STYLES */
.login-body {
  background-color: black;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: #111;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.login-title {
  font-size: 26px;
  color: yellow;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  color: white;
  display: block;
  margin-top: 4px;
}

.login-container input {
  display: block;
  margin: 12px auto;
  padding: 12px;
  width: 90%;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

.login-container button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: yellow;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button:hover {
  background-color: #ffd500;
}

#error-message {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}
/* DASHBOARD PAGE */
.dashboard-body {
  background-color: black;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.dashboard-container {
  background-color: #111;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.4);
  width: 90%;
  max-width: 500px;
}

.dashboard-greeting {
  font-size: 24px;
  color: yellow;
  margin-bottom: 30px;
}

.dashboard-buttons button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 14px;
  font-size: 16px;
  background-color: yellow;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dashboard-buttons button:hover {
  background-color: #ffd500;
}
