/* General page styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container layout */
.container {
  display: flex;
  flex-wrap: wrap; /* allows stacking on small screens */
  max-width: 1000px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Left side: login buttons */
.login-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
}

.login-section h2 {
  margin-bottom: 20px;
}

.btn {
  display: block;
  width: 100%;
  height:70px;
  margin: 10px auto;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease; /* smooth animation */
  position: relative;
  overflow: hidden;
}

/* Button colors */
.btn.staff {
  background-color: #007bff;
}
.btn.admin {
  background-color: #28a745;
}
.btn.director {
  background-color: #dc3545;
}

/* Hover animations */
.btn:hover {
  transform: scale(1.05); /* slight zoom */
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Ripple effect on click */
.btn:active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  from {
    width: 5px;
    height: 5px;
    opacity: 1;
  }
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Right side: logo + heading */
.logo-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
}

.logo-section h2 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #333;
}

.logo-section img {
  max-width: 200px;
  height: auto;
}
.powered {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 14px;
  color: #555;
  font-style: italic;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}
