/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #264E61, #0f4358);
  color: #333;
}

.logo-header {
  width: 120px;
  height: 50px;
  object-fit: contain;
}

.logo {
  display: block;
  margin: 0 auto 20px;
  width: 100px;
}


.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Input Groups */
.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: #10d989;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 5px;
  font-size: 16px;
  color: #777;
  transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
  top: 0;
  font-size: 12px;
  color: #10d989;
}

/* Options (For Login Form Only) */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.options label {
  font-size: 14px;
  color: #555;
}

.options a {
  text-decoration: none;
  color: #09d591;
  font-size: 14px;
  transition: color 0.3s ease;
}

.options a:hover {
  color: #16ec96;
}

/* Buttons */
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #04997e;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #08a05e;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* Links */
p {
  text-align: center;
  margin-top: 1rem;
  font-size: 14px;
  color: #555;
}

p a {
  color: #068364;
  text-decoration: none;
  transition: color 0.3s ease;
}

p a:hover {
  color: #0b9a64;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  h2 {
    font-size: 24px;
  }

  .input-group input {
    font-size: 14px;
  }

  button {
    font-size: 14px;
  }
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  white-space: nowrap;
}

@media (max-width: 576px) {

  .table th,
  .table td {
    font-size: 12px;
    padding: 0.5rem;
  }
}