/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(270deg, #F5EFEB, #577C8E);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  color: #000;
}

/* Keyframes for Gradient Animation */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Container */
.container {
  max-width: 400px;
  width: 100%;
  margin: 40px auto;
  text-align: center;
}

/* Input Box Styling */
.input-box {
  margin-bottom: 20px;
}

/* Styling for Input Boxes */
.input-box input[type="text"],
.input-box input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #577C8E;
    font-weight: bold;
    background-color: #F4EFEB;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Button Styling */
.login-button {
    background-color: #75b3d1;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.login-button:hover {
    background-color: #577C8E;
}

.login-button:hover {
    background-color: #577C8E;
}


/* Styling for the Select Element */
.form-control {
  appearance: none; /* Remove default dropdown arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg width="10" height="5" viewBox="0 0 10 5" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h10L5 5z" fill="%23577C8E" /%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px 8px;
}



.login-button:hover {
  background-color: #577C8E;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .input-box input[type="text"],
  .form-control,
  .login-button {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .input-box input[type="text"],
  .form-control,
  .login-button {
    padding: 10px;
    font-size: 12px;
  }
}