* {
  margin: 0;
  padding: 0;
  font-family: bold;
}
@font-face {
  font-family: bold;
  src: url(./assets/fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: ExtraBoldItalic;
  src: url(./assets/fonts/Poppins-ExtraBoldItalic.ttf);
}
body {
  background-color: rgb(207, 207, 207);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.con {
  position: relative;
  display: flex;
  width: 500px;
  height: 400px;
  flex-direction: column;
  align-items: start;
  background-color: white;
  padding: 30px;
  border-radius: 20px 20px 150px 20px;
  button {
    position: absolute;
    width: 70px;
    height: 70px;
    right: 90px;
    top: 110px;
    border-radius: 50%;
    background-image: url(./assets/images/icon-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(162, 0, 255);
    background-size: 40px;
    border: none;
    cursor: pointer;
  }
}
.inp {
  display: flex;
  border-bottom: 1px solid black;
  padding-bottom: 15px;
  width: 80%;
  height: 25%;
  .inpt {
    margin: 0 15px;
    span {
      color: red;
      display: none;
    }

    h4 {
      width: 100%;
      color: rgb(116, 116, 116);
    }
  }
  input {
    width: 100px;
    height: 50px;
    border-radius: 7px;
    border: 2px solid rgb(116, 116, 116);
    text-align: center;
    font-size: 25px;
  }
}
.re {
  font-size: 30px;
  span {
    color: rgb(162, 0, 255);
  }
}
@media (max-width: 600px) {
  .con {
    width: 250px;
    height: 400px;
  }
  .inp {
    width: 100%;
    transform: translateX(-15px);
  }
  #dd,
  #mm,
  #yy {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  #yy {
    width: 70px;
  }
  .re {
    padding-top: 25px;
    font-size: 23px;
  }
  button {
    transform: translateX(70px);
  }
}
