 /* Basic reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Make sure html and body take full height */
  html,
  body {
    height: 100%;
    margin: 0;
  }

  /* Center the login box in the middle of the page */
  body {
    background-image: url(/dblebanking/file-asset/login-background) !important;
    background-position: 50% 50% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-color: #f4f4f4 !important;
    min-height: 100% !important;
    width: 100% !important;
  }

  /* Outer container for positioning */
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  /* Style for the Login button */
  .login-btn {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background-color: var(--lwc-colorBackgroundButtonBrand, rgb(13, 115, 71));
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }

  /* Button hover effect */
  .login-btn:hover {
    background-color: var(--lwc-colorBackgroundButtonBrand, rgb(13, 115, 71));
  }

  .login-body {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0.625rem 0.625rem 0.875rem 0 rgba(0, 0, 0, 0.09);
  width: 100%;
  max-width: 30rem;
  }

  .header-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .header-subtitle {
    font-size: 16px;
    color: #16325c;
    margin-bottom: 24px;
  }

  .margin-spacer {
    margin-bottom: 24px;
  }

  .logo-container {
    height: 163px;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #16325c;
    font-weight: 500;
  }

  .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }

  .form-control:focus {
    border-color: #0d7347;
    outline: none;
    box-shadow: 0 0 0 2px rgba(13, 115, 71, 0.1);
  }

  .input-icons {
    position: relative;
  }

  .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d7347;
    opacity: 0.7;
  }

  .form-control {
    padding-left: 40px;
  }

  .messageCell {
    font-size: 14px;
    color: #cc0000;
  }

  .messageCell h4 {
    font-size: 14px;
    color: #cc0000;
    display: inline-block;
    margin-right: 5px;
  }
  @media only screen and (min-width: 48rem){
    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #054237 !important;
      min-height: 40px;
      z-index: 1000;
          
        
    }
  }
  .content{
    margin-left: 8pc;
    font-size:14px;
    color: white;
    font-family: 'Segoe UI';
    padding-top: 10px;
  }
  @media only screen and (min-width: 48rem){
    .dbl-footer {
      width: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
  }

  /* Green sections styling */
  @media only screen and (min-width: 48rem) {
    .footer-green-section {
      background-color: #054237;
      color: white;
    }
  }

  /* White section styling */
  @media only screen and (min-width: 48rem){
    .footer-white-section {
      background-color: white;
      color: #333333;
      border-top: 1px solid #dddbda;
    }
  }
  

  /* Contact us highlight color - orange/yellow */
  .contact-highlight {
    color: #dfae22;
    text-decoration: none;
  }

  .contact-highlight:hover,
  .contact-highlight:focus {
    color: #dfae22;
    text-decoration: underline;
  }

  /* Footer links styling */
  @media only screen and (min-width: 48rem){
    .footer-link {
      color: white;
      text-decoration: none;
    }
  }
    

  .footer-link:hover,
  .footer-link:focus {
    color: #dfae22;
    text-decoration: underline;
  }

  /* Ensure proper text colors in green sections */
  .footer-green-section h5,
  .footer-green-section h6,
  .footer-green-section .small,
  .footer-green-section nav {
    color: white;
  }

  /* Ensure proper text colors in white section */
  
    .footer-white-section p {
      color: #333333;
    }
  

  @media only screen and (max-width: 48rem){
    .hide-on-mobile {
      display: none !important; 
    }
    
  }

  /* Tablet optimizations */
  @media (min-width: 36rem) {
     .login-body {
       padding: 2rem;
      }
  }
/* Desktop optimizations */
@media (min-width: 62rem) {  
  .login-body {
    padding: 3rem;
  }
}

/* Large desktop optimizations */
@media (min-width: 75rem) {
  .login-body {
    max-width: 32.5rem;
  }
}

/* Optimizations for laptop screens with height constraints */
@media (max-height: 920px) {
  .login-body {
    padding: 1.25rem;
  }
}

 @media only screen and (max-width: 48rem){
.forgotPasssword-button{
   background-color:#e0a121;
   color:white;
   border:none;
   padding:1% 5%;
    }

}
 @media only screen and (min-width: 48rem){
.forgotPasssword-button{
   background-color:#e0a121;
   color:white;
   border:none;
   padding:1% 15%;
    }

}


    