@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  color: white;
  font-family: 'poppins';
  background-color: rgb(83, 0, 131);
}

nav {
  margin: 0 auto;
  width: 100vw;
  padding: 10px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(248, 248, 248, 0.082);
  border: 1px solid rgba(114, 114, 114, 0.11);
  backdrop-filter: blur(15px);
}

#navButtons {
  width: 20%;
  display: flex;
}

.navButtonsInvert {
  justify-content: end;
}

a.menuSearch {
  display: flex;
  justify-content: center;
}

a.menuSearch img{
  width: 30px;
  margin-right: 10px;
}

a.alinhadoAoMeio img{
  display: flex;
  width: 150px;
}

a.login {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: aliceblue;
  font-weight: 600;
  font-size: 16px;
  margin-left: 10px;
}

a.login:hover {
  color: rgb(83, 0, 131);
}

section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5px;
  width: 30rem;
  background-color: rgba(248, 248, 248, 0.082);
  border-radius: 15px;
  border: 1px solid rgba(114, 114, 114, 0.11);
  backdrop-filter: blur(15px);
}

#parteSuperior {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#parteSuperior h1 {
  margin: 10px auto;
  font-size: 30px;
}

h2 {
  margin: 0px auto 10px;
  padding: 0 40px;
  font-size: 18px;
}

#formularioDeLogin {
  display: flex;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  width: 85%;
}

input {
  padding: 10px;
  border-radius: 10px;
  font-family: poppins;

  background-color: rgba(223, 223, 223, 0.192);
  border: 1px solid rgba(114, 114, 114, 0.2);
  color: aliceblue;
}

input::placeholder {
  color: aliceblue;
}

input:focus {
  outline: 1px solid rgb(83, 0, 131);
}

input#botaoEnviar {
  margin: 20px auto 10px;
  width: 35%;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(70, 70, 70, 0.205) 0%, rgba(151, 151, 151, 0.212) 100%);
  border: 1px solid rgba(240, 248, 255, 0.753);
  cursor: pointer;
}

input#botaoEnviar:hover {
  background: linear-gradient(90deg, rgb(83, 0, 131) 0%, rgb(138, 0, 143) 100%);
  border: 1px solid aliceblue
}

#parteInferior {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

button#acessoProvedor {
  padding: 10px 15px;
  margin: 10px auto 15px;
  font-family: poppins;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(83, 0, 131) 0%, rgb(138, 0, 143) 100%);
  color: rgba(255, 255, 255, 0.925);
  border: 1px solid rgb(83, 0, 131);
}

button#acessoProvedor:hover {
  background: linear-gradient(90deg, rgba(83, 0, 131, 0.829) 0%, rgba(138, 0, 143, 0.856) 100%);
  border: 1px solid aliceblue;
  transform: 10ms;
}

footer{
  height: 55px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(248, 248, 248, 0.082);
  border: 1px solid rgba(114, 114, 114, 0.11);
  backdrop-filter: blur(15px);
}

h5 {
  font-weight: 200;
}

#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}
