* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(45deg, #f4b3ce, #f6dae4);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.container {
  height: 250px;
  width: 500px;
  background: #ee78b6;
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  border-radius: 18px;
  box-shadow: 10px 10px 16px;
}

h1 {
  text-align: center;
  margin-bottom: 6px;
}

.box {
  display: flex;
  height: 125px;
}

input {
  width: 97%;
  height: 3em;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  background: #f4b4ce;
}

select {
  width: 97%;
  height: 3em;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 15px;
  background: #e10180;
  text-align: center;
  font-weight: 700;
  color: #f6dae4;
}

.left-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.right-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}

.convert {
  height: 40px;
  font-size: 21px;
  color: white;
  background: #a2194f;
  border: none;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
}
