
.grid-noticias {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: auto;
  border: none;
  margin: 0;
  padding: 0;
}

.grid-noticias > div:nth-child(1) {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.grid-noticias > div:nth-child(1) p {
  color: #E6220D;
  font-style: italic;
  font-size: 25px;
  font-weight: bold;
  margin: 5px 0 0 0;
  text-align: right;
  padding-right: 10px;
}

.grid-noticias > div:nth-child(2) {
  background-color: transparent;
  margin: 0;
  padding: 2px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-form {
  width: 300px;
  border: 0px solid #e6e3e3;
  border-radius: 8px;
  padding: 2px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

.newsletter-form label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #E6220D;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.newsletter-form input[type="checkbox"] {
  margin-right: 10px;
}

.newsletter-form span {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

.newsletter-form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #E6220D;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form input[type="submit"]:hover {
  background-color: #0056b3;
}

.newsletter-form input[type="submit"]:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.newsletter-form div[style="display:none"] {
  display: none;
}

.error {
  color: #ff0000;
  font-size: 12px;
  margin-bottom: 10px;
  display: none;
}
