  /* ===== Reset & Fonts ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

  .main-container-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 700px;
    background-position: top;
    background-image: url(images/background_image.png);
  }

  /* ===== Login Card ===== */
  .login-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    width: 380px;
    padding: 40px 30px;
    text-align: center;
    border-top: 6px solid #F48420;
    /* Orange top border */
  }

  .login-container h1 {
    font-family: 'BorisBlackBloxx', sans-serif;
      background: linear-gradient(90deg, #F48420, #FF5800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: bold;

  }

  .color-login-chnage {
    font-family: 'BorisBlackBloxx', sans-serif;
    color: black;
  }

  .login-container p {
    color: #555;
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* ===== Input Fields ===== */
  .login-container input {
    width: 100%;
    padding: 12px 15px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
  }

  .login-container input:focus {
    border-color: #FF5800;
    outline: none;
    box-shadow: 0 0 6px rgba(255, 92, 0, 0.4);
  }

  /* ===== Button ===== */
  .login-btn {
    width: 100%;
    background: linear-gradient(90deg, #F48420, #FF5800);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
  }

  .login-btn:hover {
    background: #F48420;
  }

  /* ===== Footer Links ===== */
  .login-container .links {
    margin-top: 20px;
    font-size: 13px;
  }

  .login-container .links a {
    background: linear-gradient(90deg, #F48420, #FF5800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: bold;
  }

  .login-container .links a:hover {
    text-decoration: underline;
  }