html,
body {
  height: 90%;
  min-height: 100%;
}

.tb {
  display: table;
  width: 100%;
}
p{
  color:#0F0000;
}

.td {
  display: table-cell;
  vertical-align: middle;
}


input,
button {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
}
/* Search box container */
#cover {
  width: 320px;
  height: 60px;
  margin: 0 auto;
  background-color: #ffffff;   /* white box */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1), 0 0 0 3px rgba(0,0,0,0.05);
}

/* Flex container for input + button */
.input-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
}

/* Input styles */
input[type="text"] {
  flex: 1;
  height: 40px;
  padding: 0 10px;
  font-size: 16px;
  border: none;               /* no border */
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #333;
  background-color: transparent;
}

/* Placeholder styles */
input[type="text"]::placeholder {
  color: #888;             /*  gray */
  transition: opacity 0.3s ease;
}

/* Placeholder disappears on focus */
input[type="text"]:focus::placeholder {
  opacity: 0;
}

/* Button styles */
button {
  width: 50px;
  height: 40px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #E2001A, #B30015); /* red gradient */
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover animation */
button:hover {
  transform: scale(1.2) rotate(-10deg);
  background: linear-gradient(45deg, #B30015, #E2001A); /* hover gradient */
}

button i {
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Icon pop on hover */
button:hover i {
  transform: scale(1.3);
  color: #fff7f7;
}}