body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    background-color: #f2f2f2;
    margin: 0;
    padding: 4% 4%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    color: #535353;
}
.forms-ins-con {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}
input {
  padding: 0px 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 52px;
  font-size: 18px;
  margin-bottom: 10px;
}
input:focus-visible {
  border: 1px solid #ED3239;
  outline: 1px solid #ED3239;
}

button {
  padding: 10px 16px;
  background-color: #ED3239;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: auto;
  margin-top: 5px;
  font-size:18px;
}
button:hover {
    background-color: #BA020E;
}
form {
    text-align: center;
}

a {
    color:#ED3239;
    font-size: 16px;
    text-decoration: none;
    margin-top: 14px;
}
a:hover {
    color: #BA020E;
}