.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.input-field {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-button {
  padding: 1rem;
  border: none;
  background: linear-gradient(45deg, #6a5acd, #483d8b);
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
}

.background-svg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}