* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f4f6;
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.formcaptchwrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.captchabtn.btn.btn-primary {
    min-height: 40px;
}
.container--row{
  display: flex;
  align-items: center;
}
.captchabtn {
    background-color: #fff !important;
    border: none;
    box-shadow: 0 0 6px #BACFE0;
    display: flex;
    font-size: .85rem;
    border-radius: .1875rem;
    padding: .375rem .75rem;
}
.captchabtn:hover{
  background-color: #fff !important; ;
}
.captchabtn img{
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
}
.captchabtn:hover img{
  transform: rotate(180deg);
}
img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
}
.login-section {
  padding: 12px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.container {
  display: flex;
  background: #fff;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 50px;
}

.left-panel {
  width: 100%;
  padding: 60px;
}

.left-panel {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 15px;
}

.header-logo img {
  width: 120px;
}

h3.welcometext {
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 25px;
  opacity: .8;
  text-align: center;
  color: #031b4e;
}

.smalllogintext {
  text-align: center;
  font-size: 12px;
  padding-top: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

input.form-control-inner {
  font-size: 13px;
  width: 100%;
  outline: none;
  border: 1px solid #c9c9c9;
  line-height: 1.5;
  border-radius: 4px;
  padding: 7px 9px;
  background-color: #fafafa;
}

.button-btn {
  padding: 12px;
  background-color: #3f49e1;
  color: white;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}

.button-btn:hover {
  background-color: #2d38b0;
}

.forgetpasswrap {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    opacity: .8;
    text-align: center;
    color: #031b4e;
    margin-bottom: 3px;
}
.login-section-inrer {
    display: flex;
    justify-content: center;
}
.captcha-box {
    height: 36px;
}
.captcha-box img {
  cursor: pointer;
}
p.name-text-charset {
    font-size: 9px;
    font-weight: 600;
}
.input-box label {
  line-height: 16px;
  font-size: 13px;
  display: block;
  font-weight: 600;
  opacity: .8;
  color: #031b4e;
}

.loginformwrapperlogin-form {
  padding: 26px 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-header-box-password i {
    font-size: 31px;
}

span.bi.bi-shield-lock-fill {
    font-size: 39px;
    color: #413f3f;
}
.forgetpasstext {
    font-size: 12px;
    opacity: 1.8;
    text-align: center;
    max-width: 320px;
    margin: auto;
    font-weight: 400;
    color: #ccc;
}
.login-header-box {
  margin-bottom: 41px;
}

/* 🔻 Responsive - for tablet/mobile 🔻 */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    width: 100%;
    padding: 20px 20px 28px;
  }

  .swiper {
    max-width: 100%;
  }
   .loginformwrapperlogin-form {
    gap: 0;
   }

  h3.welcometext {
    font-size: 20px;
    line-height: 12px;
  }
  .footer-text{
    flex-direction: column;
  }
  .login-section{
    padding: 50px 0;
  }
  .login-header-box{
    margin-bottom: 10px;
  }
}


  /* ALERT STYLES */
      .alert-box {
        display: flex;
        align-items: flex-start;
        padding: 15px 20px;
        border-radius: 12px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        min-width: 300px;
        max-width: 400px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        gap: 15px;
        animation: slideIn 0.3s ease;
        transition: opacity 0.5s ease;
      }
      .alert-success {
        background-color: #d4edda;
        color: #155724;
      }
      .alert-error {
        background-color: #f8d7da;
        color: #721c24;
      }
      .alert-icon {
        font-size: 14px;
        margin-top: 3px;
        flex-shrink: 0;
        background-color: #72050559;
        padding: 8px 8px;
        border-radius: 50px;
        color: #fff !important;
      }
      .alert-content {
        flex-grow: 1;
      }
      .alert-title {
        display: block;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 2px;
      }
      .alert-message {
        margin: 0;
        font-size: 14px;
        
      }
      canvas#captcha-canvas {
    background-color: #e5effd;
}
      .alert-close {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    top: 10px;
    position: relative;
    color: #ff00005e;
}


footer.my-auto.py-3.text-center {
    position: fixed;
    bottom: 0;
    background-color: #f4f4f5!important;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 100%;
}

ul.footer-ul {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  padding-inline-start: 0 !important;
  list-style: none;
}
.policylogin {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: space-between;
}
.footer-ul li {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 2px solid rgba(215, 215, 215, .47);
  line-height: 18px;
}
 a.f-link {
   opacity: .8;
   font-size: 13px;
   line-height: 5px !important;
  transition: all .3s ease 0s;
  text-decoration: none;
  color: #031b4e;
 }
 a.f-link:hover{
  color:#0162e8;
 }
.copy-right p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: .8;
  color: #364872;
}
.formcaptchwrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:10px;
}
.captchabtn.btn.btn-primary {
    min-height: 40px;
}
.btnSignLogin{
  height: 40px;
}
@media screen and (max-width:991px) {
  .policylogin{
    display: block;
  }
  ul.footer-ul{
    align-items: center;
    justify-content: center;
  }
    .copy-right p {
      padding-top: 10px;
    }
}
@media screen and (max-width:768px) {
  .smallsignup{
    border:none;
  }
}
@media screen and (max-width:410px) {
    .footer-ul li {
        border-right: none;
      }
    
}
