 * {
     font-family: 'Rubik', sans-serif;
 }

 body {
     background-color: #00B1A8;
     margin: 0;
     padding: 0;
 }

 .login-wrapper {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
 }

 .row.g-0 {
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 @media (min-width: 768px) {
     .row.g-0 {
         flex-direction: row;
     }
 }

 .left-section {
     position: relative;
     padding: 2rem;
     color: #fff;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #00B1A8;
 }

 .left-bg-img {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 100%;
     object-fit: cover;
     z-index: 0;
     opacity: 0.5;
 }

 .left-content {
     position: relative;
     z-index: 2;
     text-align: center;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     gap: 400px;
 }

 .left-content h2 {
     font-weight: 400;
     font-size: 40px;
 }

 .vertical-divider-login {
     width: 160px;
     border: 1px solid white;
     margin: 10px auto;
 }

 .left-content p {
     margin-top: 80px;
     font-size: 30px;
 }

 .small-guide {
     font-size: 20px;
     font-weight: 400;
 }

 .left-content strong {
     font-weight: 700;
 }

 .right-section {
     background: white;
     padding: 2rem 4rem;
     display: flex;
     align-items: center;
     justify-content: center;
     border-top-left-radius: 50px;
     border-bottom-left-radius: 50px;
     box-shadow: -60px 0px 1px -30px rgba(235, 235, 235, 0.247);
     flex: 1;
     /* height: 100%; */
 }

 .login-panel {
     width: 100%;
     max-width: 500px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .login-panel img {
     height: 90px;
     /* margin-top: -300px; */
     margin-bottom: 40px;
 }

 .login-title {
     font-size: 30px;
     font-weight: 700;
     color: #42145f;
 }

 .forgot-link {
     font-size: 13px;
     color: #70c637;
     text-decoration: none;
 }

 .login-btn {
     background-color: #00B1A8;
     color: white;
     font-weight: 500;
     border: none;
 }

 .login-btn:hover {
     background-color: #009688;
 }



 /* Mobile Responsiveness */
 @media (max-width: 768px) {
     .login-wrapper {
         min-height: 100vh;
     }

     .left-section {
         height: auto;
         max-height: none;
         padding: 1.5rem;
     }

     .left-content {
         gap: 5px;
     }

     .left-content h2 {
         font-size: 20px;
     }

     .left-content p {
         margin-top: 40px;
         font-size: 13px;
     }

     .right-section {
         border-bottom-left-radius: 0;
         border-top-right-radius: 50px;

         box-shadow: none;
         padding: 2rem 1rem;
         height: auto;
     }

     .login-panel img {
         height: 80px;
         margin-bottom: 20px;
     }

     .login-title {
         font-size: 18px;
     }

     .login-panel {
         padding: 0 1rem;
     }
 }

 @media screen and (max-width: 375px),
 screen and (max-height: 600px) {
     .left-content h2 {
         font-size: 18px;
     }

     .login-panel img {
         height: 50px;
         margin-bottom: 10px;
     }
 }