body {
  margin: 0;
}

.logo {
  width: min(50vw, 200px);
  padding-top: 20px;
}

.form-container {
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(#5714ac, #b81080);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-frame {
  width: 100%;
  min-height: max(1250px, 100vh);
  border:none; 
  margin:0; 
  padding:0; 
  overflow:hidden;
  position: relative;
}

.background {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  margin: 30px auto;
  max-width: 90vw;
  width: 640px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: white;
}

@media screen and (max-width: 600px) {
  .form-frame {
    min-height: max(1350px, 100vh);
  }
}
