@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&subset=greek-ext');

body {
    background-position: center;
    background-origin: content-box;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    font-family: 'Noto Sans', sans-serif;
}

.text-center {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    margin: -50px 0 80px 0;
    display: block;
    text-align: center;
}

.box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.50);
    border-radius: 10px;
    padding: 40px 50px;
	max-width: 400px;
}

.input-container {
    position: relative;
    margin-bottom: 25px;
}

.input-container label {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
	margin-top: 20px;
}

.input-container input {
    border: 0;
    border-bottom: 1px solid #555;
    background: transparent;
    width: 100%;
    padding: 8px 0 5px 0;
    font-size: 16px;
    color: #fff;
	margin-top: 20px;
}

.input-container input:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid #1379ff;
}

.btn {
	color: #fff;
	background-color: #1379ff;
	outline: none;
	border: 0;
	color: #fff;
	padding: 10px 0; /* Reduzi o padding para 10px 0 para manter o mesmo tamanho de altura */
	text-transform: uppercase;
	border-radius: 3px;
	cursor: pointer;
	position: relative;
	width: 100%; /* Define a largura para 100% */
	margin-top: 20px;
}

.input-container input:focus ~ label,
.input-container input:valid ~ label {
    top: -12px;
    font-size: 12px;
}

img {
	padding-top: 0;
	margin-bottom: 30px; /* Ajuste o valor conforme necessário */
}

@media (max-width: 768px) {
    .box {
        padding: 20px; /* Ajustei o padding interno do box */
    }

    .input-container input,
    .input-container label {
        font-size: 16px; /* Ajustei o tamanho da fonte para telas menores */
    }

    img {
        width: 150px; /* Ajustei o tamanho da logo para telas menores */
    }
}

::selection {
    background-color: salmon;
    color: white;
  }
  
  .parallax > use {
    animation: move-forever 12s linear infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -4s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 15s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -2s;
    animation-duration: 9s;
  }
  
  @keyframes move-forever {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  .editorial {
    display: block;
    width: 100%;
    height: 10em;
    max-height: 100vh;
    margin: 0;
  }
  
  body {
    background-color: #323232;
    margin: 0;
    max-height: 100vh;
    overflow: hidden;
    padding: 9em 0 0 0;
  }
  
  .content {
    font-family: "Lato", sans-serif;
    text-align: center;
    background-color: #2d55aa;
    text-align: center;
    min-height: 75vh;
    margin: -0.1em 0 0 0;
    padding: 1em;
    color: #eee;
    font-size: 2em;
    font-weight: 300;
  }
  
  .content {
    font-size: 1em;
  }
  
  .content h1 {
    margin-top: -5.6em;
    font-weight: 100;
    font-size: 3em;
    user-select: none;
    cursor: default;
  }
  
  /*prevent many large-by-comparison ripples by shrinking the height*/
  @media (max-width: 50em) {
    .content h1 {
      font-size: 12vmax;
    }
  
    .editorial {
      height: 17vw;
    }
  }
  h1 {
    outline: none;
  }
  
  body {
    background-color: #234;
  }