/* login.css

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0088cc, #00aaff); /* Page background
  display: flex;
  justify-content: flex-start; /* Align the login form to the left
  align-items: flex-start; /* Align content to the top
  height: 100vh;
  color: #333;
}

.login-container {
  width: 100%; /* Full width of the screen
  max-width: 500px; /* Optional constraint for larger screens
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin: 30px; /* Space from the top and left
}

.login-logo {
  margin-bottom: 20px;
  text-align: left;
}

.login-logo img {
  max-width: 150px;
}

.login-container h2 {
  font-size: 22px;
  color: #333;
  text-align: left;
  margin-bottom: 10px;
}

.login-container p {
  text-align: left;
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

.form-group img {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.form-group input {
  width: 100%;
  padding: 10px 40px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  font-size: 14px;
}

.form-group input:focus {
  border: 1px solid #00aaff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 170, 255, 0.5);
}

.form-group button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.forgot-password {
  text-align: right;
  margin-bottom: 20px;
}

.forgot-password a {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.btn {
  display: block;
  width: 100%; /* Button stretches to full width of the form
  padding: 12px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn.loading::after {
  content: "";
  margin-left: 10px;
  border: 2px solid white;
  border-radius: 50%;
  border-top: 2px solid transparent;
  width: 16px;
  height: 16px;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

.btn:hover {
  background-color: #0088cc;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

small {
  color: red;
  display: none;
  font-size: 12px;
}

@media (max-width: 600px) {
  .login-container {
    padding: 15px;
    margin: 20px;
  }

  .btn {
    font-size: 14px;
  }
}

*/