.row .form-group {
  flex: 1;
}
.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
form {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 0px;
  border-radius: 10px;
}
body {
  background-color: #c5e4e7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-size: 14px;
}
input,
textarea {
  font-size: 14px;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  border-image: initial;
  border-radius: 5px;
}
.container {
  display: flex;
  gap: 30px;
  background: white;
  padding: 30px;
  border-radius: 15px;
}
.left,
.right {
  flex: 1;
}
.right {
  background: #00494d;
  color: white;
  padding: 20px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
.left {
  max-width: 400px;
}
.tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tips button,
.tips input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}
.tips input {
  border: none;
  outline: none;
  background: #f3f3f3;
  text-align: center;
}
.tips button {
  background: #00494d;
  color: white;
  border: none;
}
.input-group {
  position: relative;
}
.icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  opacity: 0.6;
  pointer-events: none;
}
.input-group input {
  text-align: right;
  width: 100%;
  border-radius: 5px;
}
.right button {
  background: #26c0ab;
  color: #00494d;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.reset-btn {
  background: #26c0ab;
  color: #00494d;
  width: 100%;
  padding: 20px;
}
.result-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-row {
  display: flex;
  justify-content: center;
  align-items: right;
}
.error {
  color: red;
  font-size: 12px;
  display: none;
}
.input-error {
  border: 2px solid red;
}
.tips button.active {
  background: #26c0ab;
  color: #00494d;
}
