@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-fam: "Poppins", sans-serif, monospace;
}

body {
  overflow: hidden;
  font-family: var(--font-fam);
}

.title{
  text-align: center;
  padding-top: 15px;
  font-size: 35px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.container {
  background: url("../image/back.png");
  height: 100vh;
  width: 100vw;
  background-position: center;
  background-size: cover;
  position: relative;
}

form {
  padding: 10px;
  width: 554px;
  height: 85vh;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    150.65deg,
    rgba(244, 244, 244, 0.47) 3.25%,
    rgba(244, 244, 244, 0.1974) 108.43%
  );
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px 24px;
}

input {
  background: rgba(241, 241, 241, 0.44);
  border-radius: 10px;
  height: 15vh;
  width: 96%;
  margin: 12px auto 0 auto;
  border: none;
  outline: none;
  grid-column: 1 / span 4;
  text-align: end;
  padding-right: 20px;
  font-size: 23px;
  font-weight: 600;
  color: rgb(49, 49, 49);
}


span {
  background: linear-gradient(
    119.68deg,
    #f2f2f2 1.72%,
    rgba(234, 230, 230, 0.308) 110.96%
  );
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 27px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(66, 66, 66);
  display: flex;
  justify-content: center;
  align-items: center;
}

span:active{
  transform: translateY(2px);
}

.clear{
  grid-column: 1 / span 2;
}
.eq{
  grid-column: span 2;
}

