:root {
  --col-bg: #f2f2f2;
  --col-on-bg: #333;
  --col-active: orangered;
  --col-disble: #c3c3c3;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  display: flex;
  align-items: center;
  min-height: 100vh;
  font-size: 1.5rem;
  background-image: linear-gradient(105deg, #10b981, #30d19b);
}

.container {
  text-align: center;
}

h5 {
  color: white;
  margin-bottom: 10px;
  margin-left: 150px;
}

.search {
  position: relative;
  height: 30px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-left: 150px;
}

.search-input {
  display: inline-block;
  border: none;
  height: 30px;
  font-size: 16px;
  padding: 8px 15px;
  outline: none;
  border-radius: 200px;
  width: 35px;
  transition: width 0.5s ease-in;
  padding-left: 30px;
}

.search-btn {
  position: absolute;
  left: 5px;
  display: inline-block;
  background-color: transparent;
  outline: none;
  border: none;
  height: 30px;
  padding: 5px;
  color: gray;
  display: flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.search.active .search-input {
  width: 100%;
}
