html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 10px; /* Lebar scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f1f1f1; /* Warna latar belakang track scrollbar */
    border-radius: 10px; /* Buat track scrollbar menjadi bulat */
}
body::-webkit-scrollbar-thumb {
    background-color: #FF66B2; /* Warna bagian scrollbar (Pink) */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Border untuk memberi efek ruang antara track dan thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #FF66B2; /* Warna thumb saat dihover (Pink) */
}

/* Style untuk img */
img {
    display: block;
    margin: 0 auto; /* Memusatkan gambar */
    max-width: 100%; /* Membuat gambar fleksibel terhadap lebar container */
    height: auto; /* Menjaga rasio gambar */
}

/* Style untuk h1 */
h1 {
    font-size: 2.5em;
    text-align: center; /* Memusatkan teks */
    margin: 10px 0;
    font-weight: 700; /* Membuat teks lebih tebal */
    color: #CC0066; /* Warna teks pink gelap */
}

h1 span {
    color: #FF66B2; /* Warna pink neon untuk teks dalam span */
    font-style: italic; /* Gaya miring untuk elemen span */
}

/* Style untuk p */
p {
    text-align: center; /* Memusatkan teks */
    font-size: 1.2em; /* Ukuran font sedang */
    margin: 10px 0;
    color: #333; /* Warna teks abu-abu gelap */
    line-height: 1.6; /* Memberikan jarak antar baris */
}

/* Media Query untuk layar kecil */
@media (max-width: 768px) {
    h1 {
        font-size: 2em; /* Ukuran lebih kecil pada layar kecil */
    }

    p {
        font-size: 1em; /* Ukuran teks lebih kecil pada layar kecil */
    }

    img {
        max-width: 90%; /* Gambar tidak mengambil seluruh lebar layar */
    }
}

/* Media Query untuk layar sangat kecil */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8em; /* Ukuran lebih kecil pada layar sangat kecil */
    }

    p {
        font-size: 0.9em; /* Ukuran teks lebih kecil pada layar sangat kecil */
    }

    img {
        max-width: 80%; /* Gambar lebih kecil agar tetap proporsional */
    }
}


body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    width: 100% !important;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.backRight {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: #FF66B2; /* Pink neon */
}

.backLeft {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    background: #CC0066; /* Darker pink */
}

#back {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -999;
}

.canvas-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

#slideBox {
    width: 50%;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    margin-left: 50%;
    position: absolute;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.topLayer {
    width: 200%;
    height: 100%;
    position: relative;
    left: -100%;
}

label {
    font-size: 0.8em;
    text-transform: uppercase;
}

input {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
    padding: 8px 1px;
    margin-top: 0.1em;
}

.left {
    width: 50%;
    height: 100%;
    overflow: scroll;
    background: #2C3034;
    left: 0;
    position: absolute;
}

.left label {
    color: #e3e3e3;
}

.left input {
    border-bottom: 1px solid #e3e3e3;
    color: #e3e3e3;
}

.left input:focus,
.left input:active {
    border-color: #FF66B2; /* Pink neon */
    color: #FF66B2; /* Pink neon */
}

.left input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #2C3034 inset;
    -webkit-text-fill-color: #e3e3e3;
}

.left a {
    color: #FF66B2; /* Pink neon */
}

.right {
    width: 50%;
    height: 100%;
    overflow: scroll;
    background: #f9f9f9;
    right: 0;
    position: absolute;
}

.right label {
    color: #212121;
}

.right input {
    border-bottom: 1px solid #212121;
}

.right input:focus,
.right input:active {
    border-color: #CC0066; /* Darker pink */
}

.right input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #f9f9f9 inset;
    -webkit-text-fill-color: #212121;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.content h2 {
    font-weight: 300;
    font-size: 2.6em;
    margin: 0.2em 0 0.1em;
}

.left .content h2 {
    color: #FF66B2; /* Pink neon */
}

.right .content h2 {
    color: #CC0066; /* Darker pink */
}

.form-element {
    margin: 1.6em 0;
}

.form-element.form-submit {
    margin: 1.6em 0 0;
}

.form-stack {
    display: flex;
    flex-direction: column;
}

button {
    padding: 0.8em 1.2em;
    margin: 0 10px 0 0;
    width: auto;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1em;
    color: #fff;
    line-height: 1em;
    letter-spacing: 0.6px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    background-color: #CC0066; /* Darker pink */
    cursor: pointer;
    transition: all 0.3s ease; /* Efek transisi dengan ease */
}

button:hover {
    background-color: #A30052; /* Even darker pink on hover */
    transform: scale(1.05); /* Membuat tombol sedikit membesar */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Menambah efek bayangan */
}

button:active {
    background-color: #7A003D; /* Deepest pink when pressed */
    transform: scale(0.98); /* Sedikit mengecil saat ditekan */
}

button.off.signup {
    color: #FF66B2; /* Pink neon */
    background: none;
    border: 2px solid #FF66B2; /* Pink neon border */
    transition: all 0.3s ease;
}

button.off.signup:hover {
    color: #fff;
    background: #FF66B2; /* Pink neon */
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
    #slideBox {
        width: 80%;
        margin-left: 20%;
    }

    .signup-info,
    .login-info {
        display: none;
    }
}

/* FOOTER SECTION - assuming you have this CSS from previous requests,
   ensuring the neonPulsePink keyframes are defined */
@keyframes neonPulsePink { /* Ubah nama keyframes */
    0% {
        text-shadow: 0 0 8px #FF66B2, 0 0 15px #FF66B2; /* More intense initial glow */
        filter: drop-shadow(0 0 8px #FF66B2);
    }
    100% {
        text-shadow: 0 0 15px #FF66B2, 0 0 25px #FF66B2; /* Even brighter and wider glow */
        filter: drop_shadow(0 0 15px #FF66B2);
    }
}

.navbar .links li .sub-menu a:hover {
    color: #E0FFFF; /* Lighter pink for the text itself to make the glow stand out */
    text-shadow: 0 0 8px #FF66B2, 0 0 15px #FF66B2; /* Matching the brighter glow */
    animation: neonPulsePink 1.2s infinite alternate; /* Faster pulse for more vibrancy */
}
nav .navbar .links li a:hover {
    color: #E0FFFF; /* Lighter pink for the text */
    text-shadow: 0 0 8px #FF66B2, 0 0 15px #FF66B2; /* Matching the brighter glow */
    transform: translateY(-2px); /* Slightly more pronounced lift */
    animation: neonPulsePink 1.2s infinite alternate; /* Faster pulse */
}
.navbar .search-box i:hover {
    color: #E0FFFF; /* Lighter pink for the icon itself to make the glow stand out */
    animation: neonPulsePink 1.2s infinite alternate; /* Faster pulse for more vibrancy */
}
.bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: none; /* Removed the underline */
    color: #E0FFFF; /* Lighter pink for the text itself to make the glow stand out */
    text-shadow: 0 0 8px #FF66B2, 0 0 15px #FF66B2; /* Brighter pink neon effect */
    animation: neonPulsePink 1.2s infinite alternate; /* Applying the pink neon pulse animation */
}
footer .content .link-boxes .box li a:hover {
    opacity: 1; /* Ensure full visibility on hover */
    text-decoration: none; /* Remove underline for a cleaner neon look */
    color: #E0FFFF; /* Lighter pink for the text itself to make the glow stand out */
    text-shadow: 0 0 8px #FF66B2, 0 0 15px #FF66B2; /* Brighter pink neon effect */
    animation: neonPulsePink 1.2s infinite alternate; /* Applying the pink neon pulse animation */
}

/* FOOTER SECTION (Existing CSS, ensure it's still present in your full stylesheet) */
footer {
    background-color: rgba(255, 192, 203, 0.712); /* Light pink background */
    width: 100%;
    left: 0;
    padding: 20px 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    background: #ffffff;
}

footer .content .logo-details img {
    max-width: 500px;
    height: 60px;
    margin-right: 10px;
    vertical-align: middle;
}

footer .content{
    max-width: 1450px;
    margin: auto;
    padding: 30px 40px 40px 40px;
}
footer .content .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.content .top .logo-details{
    color: #000000;
    font-size: 30px;
}
.content .top .media-icons{
    display: flex;
}
.content .top .media-icons a{
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}
/* Social media icons - kept original brand colors for distinctiveness */
.top .media-icons a:nth-child(1){ /* Facebook */
    background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
    color: #4267B2;
    background: #fff;
}
.top .media-icons a:nth-child(2){ /* Twitter */
    background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
    color: #1DA1F2;
    background: #fff;
}
.top .media-icons a:nth-child(3){ /* Instagram */
    background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
    color: #E1306C;
    background: #fff;
}
.top .media-icons a:nth-child(4){ /* LinkedIn (assuming from #0077B5) */
    background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
    color: #0077B5;
    background: #fff;
}
.top .media-icons a:nth-child(5){ /* YouTube */
    background: #FF0000;
}
.top .media-icons a:nth-child(5):hover{
    color: #FF0000;
    background: #fff;
}
footer .content .link-boxes{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
footer .content .link-boxes .box{
    width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}
.link-boxes .box .link_name::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #000000;
}
.content .link-boxes .box li{
    margin: 6px 0;
    list-style: none;
}
.content .link-boxes .box li a{
    color: #050505;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
}
/* This specific rule is now superseded by the more general one above for footer links */
/* .content .link-boxes .box li a:hover{
    opacity: 1;
    text-decoration: underline;
} */
.content .link-boxes .input-box{
    margin-right: 55px;
}
.link-boxes .input-box input{
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 1px solid #000000;
    background: #ffffff;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #000000;
    margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
    color: #000000;
    font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
    background: #fff;
    color: #0e0e0e;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
    opacity: 1;
}
footer .bottom-details{
    width: 100%;
    background: #ffffff;
}
footer .bottom-details .bottom_text{
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    opacity: 0.8;
    text-decoration: none;
}
/* This specific rule is now superseded by the more general one above for bottom_text a */
/* .bottom-details .bottom_text a:hover{
    opacity: 1;
    text-decoration: underline;
} */
.bottom-details .bottom_text a{
    margin-right: 10px;
}
@media (max-width: 900px) {
    footer .content .link-boxes{
        flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box{
        width: 40%;
        margin-top: 10px;
    }
}
@media (max-width: 700px){
    footer{
        position: relative;
    }
    .content .top .logo-details{
        font-size: 26px;
    }
    .content .top .media-icons a{
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }
    footer .content .link-boxes .box{
        width: calc(100% / 3 - 10px);
    }
    footer .content .link-boxes .input-box{
        width: 60%;
    }
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a{
        font-size: 12px;
    }
}
@media (max-width: 520px){
    footer::before{
        top: 145px;
    }
    footer .content .top{
        flex-direction: column;
    }
    .content .top .media-icons{
        margin-top: 16px;
    }
    footer .content .link-boxes .box{
        width: calc(100% / 2 - 10px);
    }
    footer .content .link-boxes .input-box{
        width: 100%;
    }
}
@media (max-width: 700px) {
    footer .content .logo-details img {
        max-width: 80px;
    }
}

@media (max-width: 520px) {
    footer .content .logo-details img {
        max-width: 60px;
    }
}
/* FOOTER SECTION ENDSSSS */


.forgot-password-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #CC0066; /* Your specified pink/red color */
    color: #fff; /* White text for good contrast */
    text-decoration: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: 1px solid #CC0066; /* Matching border color */
    cursor: pointer;

    /* Applied from your request: */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg equivalent */
    transition: all 0.3s ease-in-out; /* transition-all duration-300 equivalent */
    transform: scale(1); /* Base transform state */
}

.forgot-password-button:hover {
    background-color: #A30052; /* Slightly darker shade for hover */
    border-color: #A30052;
    color: #fff; /* Keep text white on hover */
    transform: scale(1.05); /* Slightly scale up on hover */
}

.forgot-password-button:active {
    background-color: #7A003D; /* Even darker shade when clicked */
    border-color: #7A003D;
    transform: scale(0.98); /* Slightly scale down when active */
}

.forgot-password-button:focus {
    outline: 2px solid #007bff; /* Contrasting blue outline for accessibility */
    outline-offset: 2px;
}



.back-button {
    display: inline-block; /* Allows for padding and better control */
    padding: 10px 20px; /* Standard padding for a link button */
    background-color: #F8F8F8; /* A light grey background to make it less prominent */
    color: #CC0066; /* Your specified pink/red color for the text */
    text-decoration: none; /* Removes the default underline */
    border: 1px solid #CC0066; /* A border matching your brand color */
    border-radius: 5px; /* Rounded corners */
    font-family: Arial, sans-serif; /* Consistent font */
    font-size: 16px; /* Readable font size */
    cursor: pointer; /* Indicates it's clickable */
    text-align: center; /* Centers the text */

    /* Smooth transitions for interactive effects */
    transition: all 0.3s ease-in-out;
    transform: scale(1); /* Base transform state */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Subtle shadow */
}

.back-button:hover {
    background-color: #CC0066; /* Invert colors on hover */
    color: #fff; /* White text on hover */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08); /* More pronounced shadow on hover */
    transform: scale(1.02); /* Slightly scale up */
}

.back-button:active {
    background-color: #A30052; /* Darker pink when active */
    color: #fff;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.04); /* Shadow recedes */
    transform: scale(0.98); /* Slightly scale down */
}

.back-button:focus {
    outline: 2px solid #007bff; /* Clear blue outline for accessibility */
    outline-offset: 3px;
}