    :root {
      
      --primary-color:#DE4E00 ; 
      --primary-hover: #e65c00;
      --background-color: #fafafa;
      --box-color: #ffffff;
      --border-color: #f1f1f1;
      --text-color: #333333;
      --subtext-color: #666666;
      --link-color: #555555;
      --input-text-color: #000000;
      --icon-color: #999999;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", sans-serif;
    }


body {
  position: relative;
  margin: 0;
  background: none !important; /* clear any conflicting background */
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://i.ibb.co/wNzMfJgP/image.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  opacity: 0.4; 
  z-index: -1;
}

    .container {
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .login-box {
      background-color: var(--box-color);
      width: 400px;
      padding: 40px;
      border-radius: 5px;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    }

    .logo {
      text-align: center;
      margin-bottom: 25px;
    }

    .logo img {
      width: 200px;
    }

    h2 {
      font-size: 20px;
      margin-bottom: 8px;
      color: var(--text-color);
    }

    p {
      font-size: 14px;
      color: var(--subtext-color);
      margin-bottom: 25px;
    }

    label {
      font-size: 13px;
      color: var(--text-color);
/*      margin-bottom: 6px;*/
      display: block;
      font-weight: 600;
      margin:1px;
    }

    input[type="email"],
    .password-wrapper input {
      width: 100%;
      padding: 10px 40px 10px 12px;
      border: 1px solid var(--border-color);
      border-radius: 4px;
      font-size: 14px;
      margin-bottom: 18px;
      color: var(--input-text-color);
    }

    input:focus {
	  outline: 1px solid var(--primary-color);
	  outline-offset: 1px;
	}

    .password-wrapper {
      position: relative;
    }

    .toggle-password {
      position: absolute;
      right: 12px;
      top: 35%;
      transform: translateY(-50%);
      font-size: 16px;
      color: var(--primary-color);
      cursor: pointer;
      user-select: none;
    }

    .remember-me {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      font-size: 13px;
    }

    .remember-me input {
      margin-right: 6px;
    }

    input[type="submit"] {
      width: 100%;
      background-color: var(--primary-color);
      border: none;
      color: white;
      padding: 11px;
      border-radius: 4px;
      font-size: 15px;
      cursor: pointer;
      margin-bottom: 15px;
    }

    .btn:hover {
      background-color: var(--primary-hover);
    }

    .forgot {
      font-size: 13px;
      color: var(--link-color);
      text-decoration: none;
    }

    .forgot:hover {
      text-decoration: underline;
    }

    input[type="checkbox"] {
	  accent-color: var(--primary-color);
	}
	#infoMessage p {
	  display: block;
	  width: 100%;

	  border:1px solid var(--primary-color); 
	  color: var(--primary-color); 
	  padding: 0.75rem 1.25rem;
	  border-radius: 0.25rem;
	  margin-bottom: 0.5rem;
	  box-sizing: border-box;
	}