* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10vh;
  padding: 2rem 2rem;
  background-color: aqua;
  width: 97%;
}
.welcome {
  font-size: 3.6rem;
  font-weight: bold;
}
.logo {
  height: 8rem;
  width: 15rem;
}
.sign {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.sign-button {
  border-radius: 2rem;
  overflow: hidden;
}
.enter-button {
  height: 2.4rem;
  width: 5.6rem;
}
.sign-input {
  border-radius: 3rem;
}
.sign-input {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}
.main-part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 3rem;
  opacity: 0;
}
.work {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 3rem 4rem;
}
.working {
  border: 2px solid blue;
  padding: 2rem 2rem;
  border-radius: 2rem;
  background-color: aqua;
}
.work-head {
  font-size: 2.4rem;
  padding-bottom: 1.4rem;
  padding-top: 1rem;
}
.work-acc {
  padding-bottom: 2rem;
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-around;
}
.acc-input {
  border-radius: 3rem;
  font-weight: bold;
  text-align: center;
}
.work-done {
  overflow: hidden;
  border-radius: 2.5rem;
}
.work-done-img {
  height: 3rem;
  width: 3rem;
}
.transition {
  padding: 2rem 2rem;

  display: grid;
  grid-template-rows: 2fr 18fr 2fr;
}
.in-out {
  display: flex;
  gap: 1.8rem;
  height: 70vh;
  overflow: scroll;
  flex-direction: column;
}
.transition-number {
  padding: 1.8rem 1.8rem;
  border: 0.2rem solid blue;
  display: grid;
  border-radius: 2rem;
  background-color: aqua;
  grid-template-columns: 3fr 1fr;
}
.transit-ammount {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.transit {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  padding: 1rem 1rem;
  border: 0.1rem solid rgb(10, 38, 10);
  border-radius: 2rem;
}
.transitw {
  background-color: rgb(248, 123, 92);
}
.transitd {
  background-color: rgb(92, 248, 92);
}
.transit-date {
  font-size: 1.8rem;
  padding: 1rem 1rem;
}
.transit-value {
  font-size: 2.4rem;
  font-weight: bold;
  padding-top: 1rem;
  text-align: center;
}
.balance {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.current-balance {
  font-size: 3rem;
  font-weight: bold;
  text-align: left;
}
.balance-cur {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
}

.final {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fine {
  font-size: 2rem;
  text-align: center;
}
.st {
  font-size: 3rem;
}

@media (max-width: 1150px) {
  .welcome {
    font-size: 3rem;
  }
  .logo {
    height: 6rem;
    width: 7.5rem;
  }
  .head {
    height: 8vh;
    padding: 1.6rem 1.6rem;
    background-color: aqua;

    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr;
  }
  .sign-input {
    width: 35%;
  }
  .sign {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
}
@media (max-width: 1030px) {
  .main-part {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 3rem;
  }
}
@media (max-width: 730px) {
  .hid {
    opacity: 0;
    font-size: 0.1px;
  }
  .head {
    display: grid;
    grid-template-columns: 0fr 1fr 3fr;
    align-items: center;
  }
}
@media (max-width: 530px) {
  .work-acc {
    padding-bottom: 2rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-around;
  }
  .acc-input {
    height: 4rem;
    width: 100%;
  }
  .main-part {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 2.5rem 0rem;

    margin-left: 3rem;
  }
  .in-out {
    height: 85vh;
    margin-top: 1rem;
  }
  .final {
    margin-top: 1rem;
  }
}
