        body {
            background: linear-gradient(135deg, #fffae6 0%, #fff3d8 100%);
            min-height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .navbar {
  background-color: white;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.nav-links li a {
  text-decoration: none;
  color: #d32f2f;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

.nav-links li a:hover {
  color: #b71c1c;
}

        .banner-img {
            width: 100vw;
            max-width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            margin: 0;
            border-bottom: 3px solid #c1c1c1;
        }
        .container-form {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            margin-top: 0px;
            padding: 20px 0;
            min-height: 80vh;
        }
        form {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.25);
            padding: 32px 32px 32px 32px;
            width: 900px;
            display: flex;
            flex-direction: column;

            overflow: hidden;
            margin: 0 24px;
        }
        h2 {
            color: #b71c1c;
            text-align: center;
            margin: 24px 0 24px 0;
            letter-spacing: 1px;
        }
        label {
            color: #232323;
            font-weight: bold;
            margin-bottom: 4px;
        }
        input, select, textarea {
            margin-bottom: 16px;
            padding: 8px;
            border: 1px solid #bdbdbd;
            border-radius: 4px;
            font-size: 1em;
            background: #f5f5f5;
            color: #232323;
        }
        input[type="checkbox"] {
            width: auto;
            margin-right: 8px;
        }
        button {
            background: #b71c1c;
            color: #fff;
            border: none;
            border-radius: 4px;
            padding: 12px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
        }
        button:hover {
            background: #880808;
        }
        .terminos {
            display: flex;
            align-items: center;
            font-size: 0.95em;
            margin-bottom: 16px;
        }
        a { color: #b71c1c; }