/* Auth Styles */
.login-body {
  background-color: #f8f9fa;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align to the left */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/gym-bg.jpg");
  background-size: cover;
  background-position: center;
  padding-left: 50px; /* Add some space from the left edge */
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  margin: 0; /* Remove auto centering */
}

.login-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-logo img {
  max-width: 150px;
}

.btn-login {
  background-color: #4e73df;
  border: none;
  padding: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-login:hover {
  background-color: #3a5bc7;
  transform: translateY(-2px);
}

.toggle-password {
  cursor: pointer;
}

/* Form styles */
.form-control:focus {
  border-color: #4e73df;
  box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.input-group-text {
  background-color: #f8f9fc;
  border-right: none;
}

.form-control {
  border-left: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .login-container {
    padding: 15px;
  }
  .login-card {
    padding: 20px;
  }
}
