body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  background-image: url("../images/FUNDO.png");
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  margin-left: 380px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.555);
  text-align: center;
}

.buttons {
  margin: 20px 0;
}

a {
  display: inline-block;
  margin: 10px 0;
  padding: 12px 20px;
  width: 80%;
  max-height: 25px;
  max-width: 250px;
  text-align: center;
  text-decoration: none;
  background-color: #1c25cb;
  color: white;
  border-radius: 5px;

  transition: background-color 0.3s ease;
}

a:hover {
  background-color: #3a42f5;
}

a span {
  font-weight: bold;
}

@media (max-width: 768px) {
  .content {
    margin-left: 0;
    padding: 15px;
    margin-left: 0px;
  }
  img {
    width: 70%;
    margin-right: 10px;
    height: auto;
  }

  a {
    font-size: 14px;
    padding: 10px 15px;
  }
}
