.login-container {
  display: flex;
  height: 100vh;
  background-color: var(--gray-100);
}

.login-form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  max-width: 500px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h1 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.login-header h3 {
  font-size: 20px;
  color: var(--gray-700);
  margin-bottom: 10px;
  font-weight: 500;
}

.login-header p {
  color: var(--gray-600);
}

.login-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-300);
}

.tab-btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.3s;
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.login-form {
  animation: fadeIn 0.3s;
}

.login-image {
  flex: 1;
  position: relative;
  display: none;
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: white;
}

.login-image-overlay h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .login-image {
    display: block;
  }
} 