/* Overall Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
    width: 100%;
    max-width: 100%; /* Ensure it doesn’t exceed the screen width */
    box-sizing: border-box; /* Prevent padding from causing overflow */
    overflow: hidden; /* Prevent overflow */
    flex-wrap: wrap; /* Allow the header to wrap on small screens */
}

/* Logo Styling */
.logo-container .logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
    max-width: 100%; /* Make sure the logo doesn't overflow */
}

/* Menu Container */
.menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Wrap items to prevent overflow */
}

/* Shopping Cart Icon Styling */
.cart-icon i {
    font-size: 22px; /* Adjust size for simplicity */
    color: #000; /* Color for the cart icon */
    cursor: pointer;
    margin-right: 15px; /* Space between cart and hamburger menu */
    flex-shrink: 0; /* Prevent the cart icon from shrinking */
}

/* Hamburger Menu Icon Styling */
.hamburger-icon {
    font-size: 20px; /* Slim size */
    cursor: pointer;
    flex-shrink: 0; /* Prevent hamburger menu from shrinking */
}


.hhObAA {
    width: 100%;
    font-family: HNforTELUSSA400normal, Arial, sans-serif;
    font-size: 16px;
    background-color: rgb(226, 226, 226);
    -webkit-font-smoothing: antialiased;
    letter-spacing: normal !important;
    text-align: center;
    padding: 20px;
    border-radius: 0; /* This removes the rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Prevents the container from exceeding its parent's width */
    box-sizing: border-box; /* Ensures padding and border are included in width/height calculations */
    overflow: hidden; /* Prevents content overflow */
}



  
.validate-form-container {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Keep the container's maximum width small */
    text-align: center;
    border: 2px solid #f4f2f3;
    border-radius: 8px;
    height: 100%; /* Set height to 100% of its parent container */
    max-height: 90vh; /* Ensure it doesn't overflow vertically */
    overflow-y: auto; /* Allows vertical scrolling if content overflows */
    margin: 0 auto;
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
    position: relative; /* Prevents content from overflowing horizontally */
}

h1 {
    color: rgb(75, 40, 109);
    margin-bottom: 20px;
    font-family: HNforTELUSSA300normal;
}

.input-group {
    margin-bottom: 22px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #000000;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.input-group input {
    width: 90%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-btn {
    width: 87%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background-color: rgb(43, 128, 0);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: rgb(43, 128, 0);
}

.success-message {
    color: green;
    font-size: 16px;
    margin-top: 15px;
}


/* Hide both images by default */
.desktop-footer, .mobile-footer {
    display: none;
    width: 100%; /* Make the images responsive */
    max-width: 100%; /* Prevent the images from overflowing */
    height: auto; /* Maintain the aspect ratio of the images */
  }
  
  /* Show the desktop image for larger screens (like desktops) */
  @media (min-width: 768px) {
    .desktop-footer {
      display: block;
    }
  }
  
  /* Show the mobile image for smaller screens (like phones) */
  @media (max-width: 767px) {
    .mobile-footer {
      display: block;
    }
  }
  











