* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Montserrat;
  color: #333;
}

nav {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

h1 {
  color: #c00;
  font-size: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: inline;
}

img {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.logo-pinterest {
  display: flex;
  align-items: center;
  width: fit-content;
  column-gap: 4px;
}

.link-nav {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.link-nav:hover {
  text-decoration: underline;
}

.restante-nav {
  display: flex;
  align-items: center;
  column-gap: 20px;
  width: fit-content;
}

.container-login {
  padding-bottom: 100px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bg-imagem-pinterest {
  width: 100%;
  position: fixed;
  top: 50vh;
}

.container {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.container-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
}

.popup {
  /* display: none !important; */
  width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding: 35px;
  border-radius: 32px;
  background-color: #fff;
}

.div-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}

.div-botao {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
  margin-top: 10px;
}

.label {
  margin-right: auto;
  margin-left: 15px;
  font-size: 15px;
}

.input {
  width: 100%;
  font-size: 16px;
  padding: 15px;
  border: 2px solid #cdcdcd;
  border-radius: 20px;
  box-sizing: border-box;
  font-family: Montserrat;
}

.botao-login {
  border-radius: 25px;
  padding: 15px 20px;
  width: 100%;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  background-color: #e60023;
  color: #fff;
}

.botao-login:hover {
  background-color: #d50c22;
}

.link-criarconta {
  color: #333;
  text-decoration: none;
}

.link-criarconta:hover {
  color: #333;
  text-decoration: underline;
}

.botao-perfil a {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
}

.botao-perfil a:hover {
  background-color: #777;
  text-decoration: none;
}

.conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 100vw;
  column-gap: 10px;
  row-gap: 30px;
  padding: 15px;
  box-sizing: border-box;
}

.bloco-imagem img {
  border-radius: 20px;
  height: 40vh;
  object-fit: cover;
}

.bloco-add-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.botao-arquivo {
  padding: 5px 10px;
  border-radius: 15px;
  border: 0;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.bloco-arquivo {
  background-color: #eee;
  padding: 10px 20px;
  border-radius: 55px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.input-arquivo {
  display: none;
}

#imagem-arquivo {
  display: none;
}

#imagem-arquivo.visivel {
  display: inline-block;
}

.bloco-add-img .botao-login {
  width: auto;
}

.bloco-input-botao {
  display: flex;
  column-gap: 20px;
}