/* Basic resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated gradient background */
body {
  background: linear-gradient(135deg, #23a6d5, #23d5ab);
  background-size: 300% 300%;
  animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Container for centering content */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 600px;
  width: 90%;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography styles */
h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #23a6d5;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Form styling */
form {
  width: 100%;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/* Input fields styling */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #23d5ab;
  box-shadow: 0 0 8px rgba(35, 213, 171, 0.6);
}

/* Button styling */
.button, button {
  background-color: #23a6d5;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  text-align: center;
  display: inline-block;
  margin: 10px 5px;
  font-size: 1em;
}

.button:hover, button:hover {
  background-color: #23d5ab;
  transform: scale(1.05);
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f4f4f8;
  font-size: 1.1em;
}

td {
  font-size: 1em;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .container {
      margin: 20px;
      padding: 15px;
  }

  table, th, td {
      font-size: 14px;
      padding: 10px;
  }
  
  input[type="text"],
  input[type="password"],
  input[type="date"],
  input[type="email"],
  textarea,
  select {
      padding: 8px;
      margin: 10px 0;
  }
  
  .button, button {
      padding: 8px 16px;
      font-size: 14px;
  }
}

.footer {
    background-color: #f2f2f2;
    padding: 20px 0;
}

.center-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

