input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #2c3441 inset; /* matches your input background */
    -webkit-text-fill-color: #fff; /* text color */
    transition: background-color 5000s ease-in-out 0s; /* prevents flash of default color */
}

input:-moz-autofill {
    box-shadow: 0 0 0px 1000px #2c3441 inset;
    -moz-text-fill-color: #fff;
}
#logo{
	max-width: 300px;
}
#logoimg{
	width: 100%;
}
body {
      margin: 0;
      font-family: system-ui, sans-serif;
      display: flex;

      align-items: center;
      height: 100vh;
      background: linear-gradient(135deg, #001533, #2c3441);
      color: #db0007;
      text-align: center;
      overflow: hidden;
      flex-direction: column;
      position: relative;
    }

    h1 {
      font-size: 48px;
      letter-spacing: 3px;
      z-index: 2;
      position: relative;
    }

    .login-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
      position: relative;
	  margin-top: auto;
	  margin-bottom: auto;
    }

    .login-container input {
      width: 250px;
      margin: 10px 0;
      padding: 10px;
      border: none;
      border-bottom: 2px solid #ffba00;
      background: transparent;
      color: white;
      font-size: 16px;
      outline: none;
      transition: border-color 0.3s;
    }

    .login-container input:focus {
      border-color: #f95d00;
    }

    .login-container button {
      margin-top: 20px;
      padding: 10px 30px;
      border-radius: 20px;
      border: none;
      background: #ffba00;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }

    .login-container button:hover {
      background: #db0007;
      color: white;
      transform: scale(1.05);
    }

    .message {
      margin-top: 15px;
      font-size: 14px;
      color: #0da74d;
      display: none;
    }

    .message.error {
      color: #c21e13;
      display: block;
    }
	
	.site-footer {
	  width: 100%;
	}