body,
html {
  height: 100%;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.login-box {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  width: 60%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-form {
  flex: 1;
  padding: 50px;
}

.login-image {
  flex: 1;
  background: url('../images/login.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form h1 {
  font-weight: bold;
}

.login-form small {
  color: #6c757d;
}

.login-form span.error-message {
  font-size: 0.8rem;
}



.btn-toggle {
  border: none;
  background: #f1f1f1;
  padding: 8px 20px;
  border-radius: 30px;
  margin-right: 10px;
  font-weight: 500;
}

.btn-toggle.active {
  background: #0d6efd;
  color: white;
}

@media (max-width: 768px) {
  .login-box {
    flex-direction: column;
    width: 90%;
  }

  .login-image {
    height: 200px;
  }
}