/* General Page Layout */
body {
  margin: 0;
  padding: 0;
  background-color: #9ff8f0;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* Reset default form element quirks */
button, input {
  all: unset; /* Remove all browser default styles */
  box-sizing: border-box;
}

/* Restore desired shared styles */
.login-container input,
.login-container button {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  line-height: 1.4;
}

/* Login box */
.login-container {
  background-color: rgba(84, 193, 179, 0.95);
  padding: 80px 80px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  width: 520px;
  min-height: 400px;
}

.login-container h2 {
  color: #003c46;
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 900;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center; /* Keep only heading centered */
}

/* Make form contents left aligned */
.login-container form {
  text-align: left;
}

/* Label styling */
.login-container label {
  display: block;
  font-weight: bold;
  margin: 10px 0 6px 0;
  font-size: 1rem;
  color: #003c46;
  text-align: left;
}

/* Input */
.login-container input {
  background-color: #e6f0ff;
  color: #000;
  padding-left: 10px;
  border: none;
}

/* Button */
.login-container button {
  background-color: #003c46;
  color: white;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
  border: none;
}

.login-container button:hover {
  background-color: #025661;
}

/* Logo styling */
.admin-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.admin-logo img {
  width: 400px;
  height: auto;
}

@media (max-width: 600px) {
  .login-container {
    width: 90%;
    padding: 50px 35px;
  }

  .admin-logo img {
    width: 200px;
  }
}
