/* ===== Background gradient remains the same ===== */
body {
  font-family: 'Oxygen', sans-serif;;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #003b46, #005f73, #0a9396, #94d2bd);
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  color: #003b46	; /* general text color outside the panel */
}

/* ===== Panel (white card) ===== */
.container, .panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  color: #003b46; /* ensure dark readable text */
}

/* ===== Headings inside the panel ===== */
footer {
	font-size: 12px;	
}
footer a {
  text-decoration: none;
  
}

/* ===== Link styling ===== */
.panel-footer a:hover {
  color: #0a9396; /* turquoise hover color */
  text-decoration: none;
}

/* ===== Input fields ===== */
input.form-control {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  color: #003b46;
  transition: all 0.3s ease;
}

input.form-control::placeholder {
  color: #666;
}

/* ===== Button ===== */
.btn-primary {
  background-color: #0a9396;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #007f8c;
}

/* ===== Alerts ===== */
.alert {
  font-size: 0.9rem;
  padding: 8px;
  margin-bottom: 10px;
}
/* ===== Gradient Animation ===== */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.login-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	max-width: 360px;
	width: 100%;
	padding: 20px 30px;
}

.login-card img {
	width: 160px;
	height: auto;
	margin-bottom: 15px;
}
