@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;700&family=Libre+Franklin:wght@200;300;400;500;700&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #fff;
  font-family: 'Inter';
}

p {
  line-height: 2;
}

body {
  background: #03131a;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-content {
  margin: 10px 0px;
}

input {
  background: transparent;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  width: 50vw;
  color: #fff;
  text-align: center;
  margin: 10px;
  border-radius: 15px;
  text-decoration-style: solid;
  text-decoration-color: #fff;
  transition: 500ms;
  outline: 3px solid #1cd96a;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

::placeholder {
  color: #757575;
  font-size: 16px;
  font-family: 'Inter';
}

button {
  background: #1cd96a;
  border: 0px;
  color: #000 !important;
  font-size: 16px;
  padding: 18px 23px;
  border-radius: 10px;
  transition: all 300ms;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 10px 0px;
}

button p {
  line-height: 1 !important;
}

button:hover {
  transform: scale(0.95)
}