@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');

* {
    font-family: "SUSE", system-ui;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

body {
  background-color: rgb(231, 231, 231);
  display: grid;
  place-items: center;
  height: 100vh;
}

h1 {
  text-align: center;
  font-weight: 700;
}

.container {
  width: 90%;
  max-width: 420px;
  background: white;
  padding: 4rem;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0.25);
  display: grid;
  gap: 1 rem;
}

.form label {
  flex: 0 1 120px;
  font-weight: 400;
}

.form input {
  flex: 1;
  border: 1px solid rgb(54, 54, 54);
  border-radius: 5px;
  padding: 5px;
  outline-color: black;
  font-size: 1.25rem;
  text-align: center;
}

.form button {
    width: 50%;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    padding: 10px;
    background:rgb(30, 90, 240);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}
