html, body {
  height: 100%;
   padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.image-box {
  /* Here's the trick */
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0)), var(--image-url) center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  /* Here's the same styles we applied to our content-div earlier */
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* For demo only */
html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
h1 {
  font-size: 40px;
}

.content {
  height: 100%;
  gap: 1em;
}


.login-page-container {
  width:100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.logo-container {
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
}

.app-logo {
  width: 300px;
  background-color: white;
  padding: 1em;
  border-radius: 8px;
  margin-top: 2em;
}

.app-text {
  color: white;
  font-size: 25px;
  text-align: center;
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  margin-top: 1em;
}

.form-container {
  color: white;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  width: 20vw;
  background-color: #000000b9;
  padding: 1em;
  border-radius: 8px;
  margin-top: 10%;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap:.3em;
  margin-bottom: 1em;
  border-bottom: 1px solid #0ab9e8;
}

.input-container label {
  color: #c4c6c7;
  font-weight: 600;
  font-size: 1rem;
}

.input-container input{
  background-color: #ffffff00 !important;
  color: #ffffff;
  border: 0;
  height: 1.5em;
  outline: none;
}

.submit-button {
  font-weight: 600;
  border-radius: 5px;
  background-color: #0ab9e8;
  border: 0;
  width:100%;
  height: 2em;
}

.icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70px
}



.powered-by {
  margin-top: 15px;
  color: rgb(212, 212, 212);
  margin-bottom: 5px;
  font-size: small;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .form-container {
    width: 60vw;
  }
  .app-logo {
    width: 200px;
    margin-top: 2em;
  }
  .icon {
    width: 40px;
  }
}