 ._main_header {
     background-color: #343a40;
     padding: 10px 0;
 }

 .icon-box {
     background-color: #3b3f45;
     color: red;
     padding: 8px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 8px;
     width: 38px;
     height: 38px;
     font-size: 16px;
     text-decoration: none;
     transition: background 0.3s ease;
 }

 .icon-box:hover {
     background-color: #fff;
 }

 .img_header img {
     width: 100%;
     max-width: 190px;
 }

 .img_header {
     padding: 20px 0;
     background-color: #ffc0cb3b;
 }

 .custom-login-card {
     /* max-width: 1000px; */
     margin: 40px auto;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
 }

 .login-bg {
     position: relative;
     background: url('https://devs.pearl-developer.com/aisea_advance//assets/images/banner.jpg') no-repeat center center/cover;
     height: 400px;
     display: flex;
     align-items: flex-end;
     color: #fff;
 }

 .login-bg::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     z-index: 1;
 }

 .login-bg .overlay-content {
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px;
     background-color: #0000004a;
     z-index: 2;
     width: 100%;
 }

 .login-bg h4 {
     font-weight: bold;
 }

 .login-bg p {
     margin-bottom: 10px;
 }

 .join-btn {
     background-color: #f7674c;
     color: #fff;
     border-radius: 6px;
     border: none;
     padding: 6px 14px;
     font-size: 14px;
 }

 .login-form-area {
     padding: 20px;
     background: #fff;
 }

 .login-form-area .form-control {
     border-radius: 8px;
 }

 .login-form-area .form-control {
     border-left: none;
 }

 .login-form-area .btn-login {
     background-color: #f7674c;
     color: #fff;
     border-radius: 6px;
     padding: 6px 18px;
 }

 .login-form-area .links a {
     color: #f7674c;
     font-size: 16px;
     margin-right: 10px;
     text-decoration: none;
 }

 .form-control:focus {
     box-shadow: none;
     border-color: #f7674c;
 }

 .input-group .form-control {
     border-radius: 0.5rem;
 }
 ._main_header .btn{
    font-size: 14px;
 }


  @media (max-width: 991px) {
    .login-bg .overlay-content{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
  }
 @media (max-width: 576px) {
     .login-bg {
         height: 300px;
     }
 }

