.sticky-main-navbar {
  position: sticky;
  top: 0;
  z-index: 1040; /* Lebih tinggi dari default tab nav */
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.login-container {
    background-color: #ee4d2d;
}

/* Kiri - gambar atau ilustrasi */
.login-image {
    flex: 1;
    background: url("https://images.unsplash.com/photo-1581579186987-97f60e1f29bc")
        center/cover no-repeat;
    min-height: 600px;
}


.sub-left-background {
    position: sticky;
    top: 75px;
    /* height: 70vh; */
    /* display: flex; */
    /* align-items: center; */
    padding: 2rem;
}

/* Kiri - gambar atau ilustrasi */
/* .login-image {
      flex: 1;
      background: url('../img/jennifer-yung-HxaotgSvghk-unsplash.jpg') center/cover no-repeat;
      min-height: 750px;
    } */

/* Kanan - form login */
.login-form {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 30px;
    padding: 12px 20px;
}

.btn-login {
    background-color: #f57c00;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    transition: 0.3s;
}
.btn-login:hover {
    background-color: #ef6c00;
}

.social-btn {
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    width: 100%;
    font-weight: 500;
    transition: 0.3s;
}
.social-btn:hover {
    background-color: #f9f9f9;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #999;
    position: relative;
}
.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}
.divider::before {
    left: 0;
}
.divider::after {
    right: 0;
}

.text-orange {
    color: #f57c00;
}
