html, body {
  font-family: 'Inter', sans-serif;
  overflow: visible;
  height: 100%;
  margin: 0;
  min-height: 100%;
  background: rgb(131,58,180);
  background: linear-gradient(125deg, rgba(131,58,180,0.5) 0%, rgba(253,29,29,0.5) 50%, rgba(252,176,69,0.5) 100%); 
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.title-enter {
  display: flex;
  flex-direction: column;
  border: solid;
  border-radius: 24px;
  border-width: 10px;
  border-color: #eeeeee;
  max-width: 400px;
  justify-content: center;
  padding-bottom: 5px;
  padding-left: 40px;
  padding-right: 40px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  background-color: #ffffff;
}

.text-input {
  /* width: 100%; */
  font-family: 'Inter', sans-serif;
  flex: 1;
  font-size: 20px;
}

.primary-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 20px;
  cursor: pointer;
  background: #FC5216;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  border: 1px solid transparent;
  padding: .4rem .8rem;
}

.primary-button:hover, .primary-button:focus, .primary-button:active {
  color: #fff;
  background: #dc3c03;
}