div#logo {
    height: auto;
    width: 300px;
    margin-top: 20%;
    position: relative;
}

div#logo img {
    max-width: 100%;
}

div#login-cont h2 {
    text-align: center;

}

div#login-cont {
    width: 500px;
    margin: 0 auto;
    text-align: left;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

div#logo {
    margin: 0 auto;
}
body {
    background: #2EF3BA;
}

div#splash-logo {
    width: 400px;
    margin: 0 auto;
    margin-top: 16vh;

}



.press-button {
  background-color: #3498db;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.press-button:active {
  transform: translateY(2px);
  box-shadow: none;
}

input.login-field {
    background-color: none !important;
    background-color: transparent !important;
    color: blue;
    border-radius: 10px;
    
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: inherit;
  -webkit-background-color: transparent !important;
}

div#form-fields {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

form {

}

label {
  margin-top: 10px;
  font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

input[type="text"],
input[type="password"] {
  background-color: transparent;
  border: 1px solid #AC57FF !important;
  padding: 5px;
  margin-bottom: 10px;
  width: 100%;
}

button[type="submit"] {
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
}

input[type="text"],
input[type="password"] {
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
  width: 90%;
}

/* Autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill:hover {
  -webkit-text-fill-color: #333; /* Change text color */
  -webkit-box-shadow: 0 0 0 1000px transparent inset; /* Remove background color */
  transition: background-color 5000s ease-in-out 0s; /* Prevent background color change */
}

button:active {
  transform: translateY(-5px) translateX(2px); /* move button down by 2px when pressed */
  box-shadow: none; /* remove box-shadow when pressed */
}

.btn-cont {
  height: 43px;
  width: 127px;
  border: 1px solid #FF56FF;
  border-radius: 10px;
  margin: 0 auto;
}

input[type="submit"] {
  height: 43px;
  width: 127px;
  border-radius: 10px;
  font-weight: bold;
  border: 1px solid #FF56FF;
  color: #7D76FF;
  transform: translateY(-5px) translateX(6px);
  background: none;
}

input[type="submit"]:active {
  transform: translateY(0px) translateX(0px); /* move button down by 2px when pressed */
  box-shadow: none; /* remove box-shadow when pressed */
}
