.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    /* bottom: 0; */
    /* position: sticky; */
    /* width: 100%; */
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    text-transform: capitalize;
}

.tagline {
    font-size: 12px;
    font-style: italic;
}

.footer-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-phone {
    font-size: 18px;
    font-weight: bold;
}

.footer-hours {
    font-size: 14px;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #444;
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
}



.login-container {
  /* width: 100vw; */
  /* height: calc(100vh - var(--dynamic-vh-offset, 0px)); */
  /* min-height: 80vh; */
  margin: 0 auto;
  padding: 60px 20px;
}

.login-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 60px;
}

.login-content {
  display: flex;
  gap: 160px;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
}

.login-section {
  flex: 1;
  max-width: 23%;
}

.signup-section {
  flex: 1;
  max-width: 25%;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input {
  padding: 10px 12px;
  border: 1px solid #ACACAC;
  border-radius: 4px;
  font-size: 1rem;
  background-color: white;
  color: #000000;
}

.form-input:focus {
  outline: none;
  border-color: #e53e3e;
  color: #000000;

}

.search-input {
  padding: 12px;
  border: 1px solid #ACACAC;
  border-radius: 4px;
  font-size: 1rem;
  background-color: white;
  color: #000000;
}

.search-input:focus {
  outline: none;
  border-color: #e53e3e;
  color: #000000;

}

.forgot-password {
  color: #333;
  text-decoration: underline;
  font-size: 0.9rem;
  align-self: flex-start;
}

.forgot-password:hover {
  color: #e53e3e;
}

.sign-in-btn {
  background-color: #e53e3e;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sign-in-btn:hover {
  background-color: #c53030;
}

.divider {
  width: 1px;
  background-color: #ACACAC70;
  min-height: 350px;
  margin: 0 20px;
}

.section-description {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.open-account-btn {
  background-color: #e53e3e;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-align: center;
}

.open-account-btn:hover {
  background-color: #c53030;
}

/* forgotPassword */

.forgotPasswordContainer {
  width: 100vw;
  /* height: calc(100vh - var(--dynamic-vh-offset, 0px)); */
  margin: 0 auto;
  padding: 120px 20px;
  flex: 1;
  max-width: 23%;

}

.forgotPasswordDesc {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.forgot-password-link {
  color: #333;
  text-decoration: underline;
  font-size: 0.9rem;
  align-self: center;
}

.forgot-password-link:hover {
  color: #e53e3e;
}

.resetPasswordContainer {
  padding: 0;
  margin: 0;
  width: 100vw;
  /* height: calc(100vh - var(--dynamic-vh-offset, 0px)); */
  margin: 0 auto;
  padding: 120px 20px;
  flex: 1;
  max-width: 40%;
}


@media (max-width: 1024px) {

  .login-container {
    padding: 0px;
    padding-top: 20px;
    height: calc(95dvh - var(--dynamic-vh-offset, 0px));
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
  }

  .innerLoginContainer {
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .login-content {
    flex-direction: column;
    gap: 40px;
    /* background: red; */
  }

  .login-section {
    max-width: 90%;
    align-self: center;
    margin: 0;
    padding: 0;
    /* background: blue; */
    width: 70%;
  }

  .signup-section {
    max-width: 70%;
    align-self: center;
    margin: 0;
    padding: 0;
  }

  .divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    margin: 0;
  }

  .login-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .forgotPasswordContainer {
    padding: 0;
    padding-top:90px;
    margin: 0;
    max-width: 100%;
    height: calc(90dvh - var(--dynamic-vh-offset, 0px));
    overflow-y: hidden;
    display: flex;
    flex-direction: column;

  }

  .innerForgotContainer {
    padding-right: 120px;
    padding-left: 120px;
    align-self: center;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .resetPasswordContainer {
    padding: 0;
    padding-top: 30px;
    margin: 0;
  width: 100vw;
  /* background: #000; */
    height: calc(90dvh - var(--dynamic-vh-offset, 0px));
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .resetPasswordInner {
    padding-right: 80px;
    padding-left: 80px;
    align-self: center;
    flex: 1 1 auto;
    overflow-y: auto;
  }

}

@media (max-width: 600px) {

  .login-container {
    padding: 0px;
    padding-top: 20px;
    height: calc(90dvh - var(--dynamic-vh-offset, 0px));
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
  }

  .innerLoginContainer {
    padding-bottom: 20px;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .login-content {
    flex-direction: column;
    gap: 40px;
  }

  .login-section {
    max-width: 90%;
    align-self: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .signup-section {
    max-width: 90%;
    align-self: center;
    margin: 0;
    padding: 0;
  }

  .divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    margin: 0;
  }

  .login-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .forgotPasswordContainer {
    padding: 0;
    padding-top: 30px;
    padding-bottom: 40px;
    margin: 0;
    width: 100vw;
    max-width: 100%;
    /* height: calc(97dvh - var(--dynamic-vh-offset, 0px)); */
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
  }

  .innerForgotContainer {
    padding-right: 20px;
    padding-left: 20px;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .resetPasswordContainer {
    padding: 0;
    margin: 0;
    width: 100vw;
    padding-top: 30px;
    margin-bottom: 30px;
    max-width: 100%;
    /* height: calc(80dvh - var(--dynamic-vh-offset, 0px)); */
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
  }

  .resetPasswordInner {
    padding-right: 20px;
    padding-left: 20px;
    flex: 1 1 auto;
    overflow-y: auto;
  }

}


/* header start */

.site-header {
    font-family: Arial, sans-serif;
}

/* Top bar */
.header-top {
    background-color: #000;
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

/* Main header */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* <-- added shadow */
}


/* Logo */
.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 40px;
    margin-right: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

/* Return link */
.header-return a {
    text-decoration: none;
    font-size: 14px;
    color: #000;
}

.header-return strong {
    font-weight: bold;
}

.arrow-icon {
    color: red;
    margin-left: 5px;
}


@media (max-width: 405px) {
.header-logo img {
    height: 25px;
}
.header-main {
    padding: 10px 10px;
}
.header-return a {
    font-size: 12px;
}
}
/* end of header */
