* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Cabeçalho */
.topo {
    background: #0066ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: white;
}

.topo .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.topo .logo img {
    height: 25px;
    margin-right: 8px;
}

.topo nav a,
.topo .acoes a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.form-box {
      border: 2px solid #0044ff;
      border-radius: 10px;
      padding: 25px;
      width: 320px;
      background: #fff;
      text-align: center;
    }

    h2 {
      color: #0044ff;
      margin-bottom: 20px;
    }

    label {
      display: block;
      font-weight: bold;
      color: #0044ff;
      margin: 10px 0 5px;
      text-align: left;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      border: 2px solid #0044ff;
      border-radius: 8px;
      margin-bottom: 15px;
      font-size: 14px;
      resize: none;
    }

    button {
      background: #fff;
      color: #0044ff;
      border: 2px solid #0044ff;
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      font-weight: bold;
      transition: 0.3s;
    }

    button:hover {
      background: #0044ff;
      color: #fff;
    }
  /* Rodapé */
footer {
    background: #0066ff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h3 {
    color: #ffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links a, .footer-links p {
    color: #ffff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
}
