 /* =========================================================
   JOB BEKU LOGIN
========================================================= */

 .jobbeku-login-section {
     background: #f5f8fc;
     min-height: calc(100vh - 135px);
     padding: 45px 15px;
     display: flex;
     align-items: center;
 }

 .jobbeku-login-wrapper {
     max-width: 1050px;
     margin: auto;
     min-height: 570px;
     border-radius: 24px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 15px 45px rgba(11, 33, 71, 0.12);
 }


 /* =========================================================
   LEFT SIDE
========================================================= */

 .login-left {
     background: #0b2147;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 .login-left::before {
     content: "";
     position: absolute;
     width: 330px;
     height: 330px;
     border-radius: 50%;
     background: rgba(255, 189, 0, 0.08);
     top: -120px;
     right: -120px;
 }

 .login-left::after {
     content: "";
     position: absolute;
     width: 250px;
     height: 250px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.04);
     bottom: -100px;
     left: -100px;
 }

 .login-left-content {
     position: relative;
     z-index: 2;
     padding: 55px 50px;
     color: #fff;
     width: 100%;
 }


 /* Verified Badge */

 .verified-badge {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     background: #ffbd00;
     color: #101010;
     font-size: 13px;
     font-weight: 700;
     padding: 8px 15px;
     border-radius: 30px;
     margin-bottom: 25px;
 }

 .verified-badge i {
     font-size: 13px;
 }


 /* Heading */

 .login-left h1 {
     font-size: 43px;
     line-height: 1.12;
     font-weight: 800;
     margin: 0 0 20px;
     letter-spacing: -1px;
 }

 .login-left h1 span {
     color: #ffbd00;
     display: block;
 }


 /* Description */

 .login-description {
     color: #d8e1ef;
     font-size: 16px;
     line-height: 1.7;
     max-width: 470px;
     margin-bottom: 30px;
 }


 /* Features */

 .login-features {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .login-feature {
     display: flex;
     align-items: center;
     gap: 14px;
 }

 .feature-icon {
     width: 43px;
     height: 43px;
     min-width: 43px;
     border-radius: 12px;
     background: rgba(255, 189, 0, 0.13);
     color: #ffbd00;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 17px;
 }

 .login-feature strong {
     display: block;
     font-size: 14px;
     color: #fff;
     margin-bottom: 2px;
 }

 .login-feature small {
     display: block;
     color: #aebed5;
     font-size: 12px;
 }


 /* Bottom */

 .login-bottom-text {
     margin-top: 35px;
     padding-top: 22px;
     border-top: 1px solid rgba(255, 255, 255, .12);
     font-size: 12px;
     color: #aebed5;
 }

 .login-bottom-text i {
     color: #ffbd00;
     margin-right: 6px;
 }


 /* =========================================================
   RIGHT SIDE
========================================================= */

 .login-right {
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px;
 }

 .login-card {
     width: 100%;
     max-width: 430px;
 }


 /* Header */

 .login-card-header {
     text-align: center;
     margin-bottom: 25px;
 }

 .login-icon {
     width: 62px;
     height: 62px;
     margin: 0 auto 14px;
     border-radius: 18px;
     background: #fff7d6;
     color: #0b2147;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 25px;
     border: 1px solid #ffe28a;
 }

 .login-card-header h2 {
     color: #0b2147;
     font-size: 27px;
     font-weight: 800;
     margin: 0 0 5px;
 }

 .login-card-header p {
     color: #7b8798;
     font-size: 14px;
     margin: 0;
 }


 /* Alert */

 .login-alert {
     border-radius: 10px;
     border: 0;
     font-size: 13px;
     padding: 11px 14px;
     margin-bottom: 18px;
 }


 /* Form */

 .login-form-group {
     margin-bottom: 17px;
 }

 .login-form-group label {
     display: block;
     font-size: 13px;
     font-weight: 700;
     color: #25344d;
     margin-bottom: 7px;
 }


 /* Input */

 .login-input {
     height: 50px;
     display: flex;
     align-items: center;
     background: #f8fafc;
     border: 1px solid #dce3ec;
     border-radius: 11px;
     transition: all .2s ease;
 }

 .login-input:focus-within {
     border-color: #0b2147;
     background: #fff;
     box-shadow: 0 0 0 3px rgba(11, 33, 71, .07);
 }

 .login-input>i {
     width: 45px;
     text-align: center;
     color: #8490a1;
     font-size: 15px;
 }

 .login-input input {
     flex: 1;
     height: 100%;
     border: 0;
     outline: 0;
     background: transparent;
     color: #17243b;
     font-size: 14px;
     padding: 0 5px;
 }

 .login-input input::placeholder {
     color: #9aa5b5;
 }


 /* Password Toggle */

 .password-toggle {
     border: 0;
     background: transparent;
     width: 45px;
     height: 100%;
     color: #8490a1;
     cursor: pointer;
 }

 .password-toggle:hover {
     color: #0b2147;
 }


 /* Options */

 .login-options {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin: 4px 0 20px;
 }

 .remember-me {
     display: flex;
     align-items: center;
     gap: 7px;
     cursor: pointer;
     color: #667386;
     font-size: 13px;
 }

 .remember-me input {
     width: 15px;
     height: 15px;
     accent-color: #0b2147;
 }

 .forgot-link {
     color: #0b5ed7;
     text-decoration: none;
     font-size: 13px;
     font-weight: 600;
 }

 .forgot-link:hover {
     color: #0b2147;
 }


 /* Login Button */

 .jobbeku-login-btn {
     width: 100%;
     height: 51px;
     border: 0;
     border-radius: 11px;
     background: #0b2147;
     color: #fff;
     font-size: 15px;
     font-weight: 700;
     transition: all .2s ease;
     cursor: pointer;
 }

 .jobbeku-login-btn i {
     margin-right: 7px;
     color: #ffbd00;
 }

 .jobbeku-login-btn:hover {
     background: #123565;
     transform: translateY(-1px);
     box-shadow: 0 7px 18px rgba(11, 33, 71, .18);
 }


 /* Signup */

 .signup-area {
     text-align: center;
     margin-top: 20px;
     color: #7b8798;
     font-size: 13px;
 }

 .signup-area a {
     color: #0b2147;
     font-weight: 700;
     text-decoration: none;
     margin-left: 4px;
 }

 .signup-area a:hover {
     color: #d99f00;
 }


 /* Security */

 .login-security {
     margin-top: 22px;
     padding-top: 17px;
     border-top: 1px solid #edf0f4;
     text-align: center;
     color: #9aa5b5;
     font-size: 11px;
 }

 .login-security i {
     color: #1c9b63;
     margin-right: 5px;
 }


 /* =========================================================
   TABLET
========================================================= */

 @media (max-width: 991px) {

     .jobbeku-login-section {
         padding: 25px 15px;
     }

     .jobbeku-login-wrapper {
         max-width: 650px;
     }

     .login-left {
         min-height: 350px;
     }

     .login-left-content {
         padding: 40px;
     }

     .login-left h1 {
         font-size: 36px;
     }

     .login-right {
         padding: 40px;
     }
 }


 /* =========================================================
   MOBILE
========================================================= */

 @media (max-width: 575px) {

     .jobbeku-login-section {
         min-height: auto;
         padding: 15px 10px 30px;
     }

     .jobbeku-login-wrapper {
         border-radius: 16px;
     }

     .login-left {
         min-height: auto;
     }

     .login-left-content {
         padding: 30px 25px;
     }

     .verified-badge {
         font-size: 11px;
         padding: 7px 12px;
         margin-bottom: 17px;
     }

     .login-left h1 {
         font-size: 30px;
         line-height: 1.15;
         margin-bottom: 14px;
     }

     .login-description {
         font-size: 13px;
         line-height: 1.6;
         margin-bottom: 22px;
     }

     .login-features {
         gap: 11px;
     }

     .feature-icon {
         width: 38px;
         height: 38px;
         min-width: 38px;
         border-radius: 10px;
         font-size: 14px;
     }

     .login-feature strong {
         font-size: 13px;
     }

     .login-feature small {
         font-size: 11px;
     }

     .login-bottom-text {
         margin-top: 23px;
         padding-top: 17px;
         font-size: 10px;
     }

     .login-right {
         padding: 30px 20px;
     }

     .login-card-header {
         margin-bottom: 22px;
     }

     .login-icon {
         width: 55px;
         height: 55px;
         font-size: 22px;
     }

     .login-card-header h2 {
         font-size: 23px;
     }

     .login-input {
         height: 48px;
     }

     .login-options {
         align-items: flex-start;
     }

     .forgot-link {
         font-size: 12px;
     }

     .remember-me {
         font-size: 12px;
     }

 }