:root {
  --main-color: #1c6c72;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(rgb(0 213 255 / 27%), #50b9c09c),
    url(images/artem-beliaikin-v6kii3H5CcU-unsplash.jpg) no-repeat center center
      fixed;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.container {
  width: 690px;
  background: rgb(254, 250, 250);
  border-radius: 7px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.wrapper {
  border-radius: 5px;
  border: 1px solid #bbb;
}

.wrapper .text-input {
  display: flex;
  border-bottom: 1px solid #bbb;
}

.text-input .to-text {
  border-radius: 0px;
  border-left: 1px solid #bbb;
}

.text-input textarea {
  height: 250px;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-size: 24px;
  font-family: "Ubuntu", sans-serif;
  color: var(--main-color);
  border-radius: 5px;
  background: none;
  padding: 10px 15px;
}

::placeholder {
  color: var(--main-color);
}

select {
  color: #1a6767;
  font-family: "rubik", sans-serif;
  font-size: 20px;
}
.controls,
li,
.icons,
.icons i {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls {
  list-style: none;
  padding: 12px 15px;
}

.controls .row.from .icons {
  padding-right: 15px;
  border-right: 1px solid #bbb;
}

.controls .row.to .icons {
  padding-left: 15px;
  border-left: 1px solid #bbb;
}

.controls .icons {
  width: 38%;
}

.controls .icons i {
  width: 50px;
  color: var(--main-color);
  font-size: 18px;
  cursor: pointer;
  justify-content: center;
}

.controls .row select {
  border: none;
  outline: none;
  font-size: 18px;
  background: none;
}

.controls .exchange {
  color: var(--main-color);
  font-size: 16px;
  cursor: pointer;
}

.container button {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  border-radius: 5px;
  background: #36b7b7;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

@media (max-width: 768px) {
  .container {
    max-width: 93%;
  }
  .wrapper {
    max-width: 102%;
  }
  .controls {
    padding: 0px 15px;
  }
  .controls .row select {
    display: flex;
    font-size: 15px;
  }
  .text-input textarea {
    font-size: 14px;
  }
  .controls .row.to .icons {
    padding-left: 9px;
  }
  .controls .icons i {
    display: flex;
    font-size: 13px;
    padding: 4px;
    width: 0px;
    align-items: center;
    justify-content: center;
  }
  .wrapper .to-text .from-text {
    font-size: 10px;
  }
  .controls .row select {
    font-size: 11px;
    padding-right: -10px;
  }
  .icons {
    display: flex;
    flex-direction: column;
    padding: 2px;
  }
  .container button {
    font-size: 15px;
  }
}
