* {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans",
    "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  background-image: url("/adminlte/assets/img/landing_bg-0d02e44da22fe57c6aaf8f58337d599b.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-container {
  margin-bottom: 20px;
}

.company-logo {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
}

.project-title {
  font-weight: 600;
  color: #2f2f99;
  margin: 15px 0;
  font-size: 28px;
}

.welcome-text {
  color: #555;
  margin-bottom: 30px;
  font-size: 15px;
}

.signin-section {
  margin: 25px 0;
}

.ms-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2f2f99;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ms-signin-btn:hover {
  background-color: #1a1a6e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ms-signin-btn:active {
  transform: translateY(0);
}

.ms-logo {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.footer {
  margin-top: 30px;
  font-size: 12px;
  color: #888;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .login-container {
    padding: 30px 20px;
    width: 85%;
  }
  
  .project-title {
    font-size: 24px;
  }
}