#logo {

  height: 70px;
  width: 140px;
}

header {
  width: 100%;
  top: 0;

  background-color: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-weight: bold;
}



form {
  margin-top: 20px;
}

form p {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  margin-bottom: 8px;
  font-weight: 600;
}

input[type="text"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus {
  border-color: #222;
  outline: none;
}


input[type="file"] {

  display: none;

}

div#imagem {
  width: 100%;


  label {
    display: block;
    width: 50%;
    margin: auto;
    cursor: pointer;
  }

  img {
    width: 100%;
    box-sizing: border-box;
  }
}

input[type="submit"] {
  padding: 12px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

input[type="submit"]:hover {
  background-color: #444;
}

footer {
  background-color: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

strong {
  color: #c00;
}


.btn {
  padding: 12px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}



section.opcoes {
  display: flex;
  flex-direction: row;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;

    margin-bottom: 100px;
  a {
    width: 50%;
    padding: 20px;
  }

}


footer {
  width: 100%;
  position: fixed;
  bottom: 0;
}