body {
      background-color: rgb(163, 43, 43);
      margin: 0;
      padding: 0;
      font-family:'Times New Roman', Times, serif;
    }

h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    background: #e74c3c;
    padding: 15px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

    article {
      background-color: #000000dc;
      padding: 0;
    }

    article ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
    }

    article ul li {
      margin: 0;
    }

    article ul li a {
      display: block;
      padding: 20px 20px;
      color: rgb(255, 255, 255);
      text-decoration: none;
      font-weight: bold;
    }

    article ul li a:hover {
      background-color: #a72828;
    }

    .article-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .formulario {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 16px;
      border: 2px solid #000000;
      max-width: 700px;
      margin: 60px auto;
    }


    .formulario label {
      font-weight: bold;
      display: block;
      margin-top: 20px;
      color: #000000;
    }

    .formulario input,
    .formulario textarea {
      width: 100%;
      padding: 12px;
      margin-top: 8px;
      border: 2px solid #000000;
      border-radius: 10px;
      font-size: 15px;
      font-family: 'Segoe UI', sans-serif;
      transition: border 0.3s ease;
    }

    .formulario input:focus,
    .formulario textarea:focus {
      border-color: #fff6f6;
      outline: none;
    }

    button[type="submit"] {
      background-color: #0e0c0c;
      color: white;
      padding: 12px 28px;
      margin-top: 25px;
      border: 2px solid #000000;
      border-radius: 50px;
      font-size: 16px;
      font-weight: bold;
      font-family: 'Segoe UI', sans-serif;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: block;
      width: 100%;
    }

    button[type="submit"]::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(235, 22, 22, 0.2);
      transition: all 0.3s ease;
    }

    button[type="submit"]:hover::before {
      left: 100%;
    }

    button[type="submit"]:hover {
      background-color: #e41212;
      transform: scale(1.03);
      box-shadow: 0 6px 18px rgba(153, 0, 0, 0.5);
      border-color: #ca011c;
    }
    .footer {
    background-color: #fc0e0e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }