﻿.search-box {
  position: relative;
  display: inline-block;
  float: right;
    margin-top: 1.2%;
}

.search-box input[type="text"] {
  width: 190px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #f2f2f2;
  font-size: 14px;
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.search-box input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.search-box button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  border: none;
  background-color: #17AF92;
  color: #fff;
  font-size: 14px;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}




