html, body {
  height: 100%;
   padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}


.login-page-container {
  background-image: url("images/background.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  width:100%;
  height:100%;
  display: flex;
}


.login-form-container {
  color: white;
  margin: auto;
  width: 300px;
  background-color: #000000b9;
  padding: 1em;
  border-radius: 5px;
}

.login-input-container {
  display: flex;
  flex-direction: column;
  gap:.3em;
  margin-bottom: 1em;
}

.login-input-container label {
  color: #c4c6c7;
  font-weight: 600;
  font-size: 1rem;
}

.login-input-container input{
  background-color: #ffffff;
  border-radius: 5px;
  border: 0;
  height: 1.5em;
}

.login-submit-button {
  font-weight: 600;
  border-radius: 5px;
  background-color: #0ab9e8;
  border: 0;
  width:100%;
  height: 2em;
}

.login-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.app-logo-container {
  display: block;
  /* background-color: white; */
  position: absolute; 
  top: 40px;
  left: 50%;
  margin-left: -220px;
  padding: 10px;
  width: 400px;
  border-radius: 6px;
}

.app-logo {
  width: 400px;
}

.app-text-container {
  display: block;
  position: absolute; 
  top: 150px;
  left: 50%;
  margin-left: -350px;
  width: 700px;
  border-radius: 6px;
  
}

.app-text {
  width: 700px;
  text-align: center;
  color: white;
  font-size: 25px;
}

.powered-by {
  margin-top: 15px;
  color: rgb(212, 212, 212);
  margin-bottom: 5px;
  font-size: small;
  text-align: center;
}

input[type="search"] {
  background-color: #00ff0000 !important;
  border-bottom: 1px solid #00b7ff;
  border-radius: 0px;
  outline: none;
  color: white;
}

input[type="password"] {
  background-color: #00ff0000 !important;
  border-bottom: 1px solid #00b7ff;
  border-radius: 0px;
  outline: none;
  color: white;
}


/* input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px rgb(48, 48, 48) inset !important;
}
 
input:-webkit-autofill{
  -webkit-text-fill-color: rgb(255, 255, 255) !important;
} */