body {
  background-color: #222;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Poppins', sans-serif; 
  font-size: 18px;
}

.container {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.img_logo {
  display: block;
  margin: 0 auto 50px;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
  max-width: 200px;
  height: auto;
  animation: fadeIn 2s ease-in-out 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

form {
  text-align: center;
}

label {
  display: block;
  font-weight: bold;
  margin: 10px 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type=text] {
  padding: 10px;
  border: 0;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
  background-color: #E8F0FE;
  height: 60px;
  font-size:25px;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
select:hover {
  border-color: #a1891d;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1), 0 0 5px rgba(161, 137, 29, 0.5);
  background: rgba(255, 255, 255, 1);
}

.button_index {
  width: 100%;
  background-color: #a1891d;
  color: white;
  padding: 10px 20px;
  margin: 20px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-size: 1.5em;
  transition: all 0.3s ease;
}

.button_index:hover {
  background-color: #907a16;
}

.button_index[disabled] {
  cursor: not-allowed;
}

.tit1 {
  font-weight: 500;
  text-align: center;
  font-size: 45px;
  color: #a1891d;
}

}
