.login-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .login-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.login-form-box {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.login-image {
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}
