@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;900&display=swap');

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #E3E9F9;
}

h3, p {
  font-size: 28px;
  text-align: center;
}

h3 {
  font-weight: 900;
  letter-spacing: 5px;
  color: #6778E8;
  text-transform: uppercase;
  margin-bottom: 15px;
}

p {
  color: #737580;
  margin-bottom: 0;
}

.container {
  width: 785px;
  height: 560px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 31px 60px 0 #CAD0E0;
  border-radius: 15px;
  background-color: white;
  justify-content: space-around;
  align-items: center;
}

.inputs {
  width: 555px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

input {
  height: 110px;
  width: 115px;
  border: none;
  border-radius: 7px;
  background-color: #F0F3FA;
  color: #6778E8;
  font-size: 80px;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.05);
}

button {
  border: none;
  background: rgb(141,158,255);
background: linear-gradient(127deg, rgba(141,158,255,1) 0%, rgba(166,116,251,1) 100%);
width: 695px;
height: 100px;
margin: 0 auto;
font-weight: 900;
letter-spacing: 5px;
font-size: 28px;
color: white;
border-radius: 15px;
text-transform: uppercase;
}

button:hover {
  cursor: pointer;
}