body {
  box-sizing: border-box;

  display: grid;
  place-content: center;
  justify-items: center;

  height: 100vh;
  margin: 0;
  padding: 1rem;

  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
    helvetica neue, helvetica, Ubuntu, roboto, noto, segoe ui, arial, sans-serif;
  color: #444;

  background-image: url(../img/back2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 370px;
  width: 350px;
  background: rgba(118, 233, 214, 0.199);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px 8px #d0d0d0;

  padding: 25px;
}

.title {
  font-size: 32px;
  color: black;
  text-align: center;
  font-weight: 700;
  color: #181818;
  text-shadow: 0px 2px 2px #dadada;
  position: relative;
  margin: 0 0 20px 0;
}

.inputs label {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  font-size: 10pt;
}

.inputs input {
  border: 1px solid rgb(9, 202, 154);
  border-radius: 15px;
  padding: 5px 9px;
  height: 16px;
}

button {
  margin: 20px 0;
  padding: 8px 15px;
  background-color: rgb(9, 202, 154);
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  color: #ffff;
}

.imc-tracks {
  height: 20px;
  background: #f2f2f2;
  background-color: rgb(9, 202, 154);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 15px 5px #dbdbdb;
  padding: 15px;
  text-align: center;
  color: #ffff;
}
