#contact {
    background-color: #022916;
}

#contact .title-container {
    position: relative;
    text-align: center;
    line-height: 1;
}

#contact .outline-text {
    font-size: 10rem;
    /* Adjust as needed to make the word large */
    color: transparent;
    -webkit-text-stroke: 5px #40634b;
    /* Dark green-grey color for the outline */
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    /* Light opacity for a subtle effect */
    z-index: 1;
    pointer-events: none;
    /* So it doesn't overlap clickable items */
}

#contact .highlight-text {
    font-size: 4rem;
    /* Smaller size to fit in front of "ABOUT" */
    color: #b6ff00;
    /* Bright green color */
    position: relative;
    z-index: 2;
    font-weight: bolder;
    -webkit-text-stroke: 5px #b6ff00;
    letter-spacing: 5px;
}

#contact .title-contact {
    font-size: 2em;
    color: #b6ff00;
    font-weight: bolder;
}

#contact .desc-contact {
    font-weight: 200;
    color: #fff;
    font-size: 1em;
}

#contact .title-info {
    color: #b6ff00;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0;
}

#contact .desc-info a:hover {
    color: #00ff5b;
    transition: all 0.3s ease;
}

#contact .desc-info a {
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 0;
}

#contact img.img-info {
    width: fit-content;
    height: auto;
}

#contact .form-control {
    background-color: #165b52;
    border: none;
    color: white;
    border-radius: 30px;
}

#contact .form-control:focus {
    box-shadow: none;
    border: 2px solid #0b3a33;
}

#contact .btn-custom {
    background-color: #00ff5b;
    color: #000;
    border-radius: 30px;
    padding: 10px 20px;
}

#contact .btn-custom:hover {
    background-color: #00e652;
}

#contact .captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 15px;
}

#contact ::placeholder {
    color: gray;
    opacity: 1;
}

#contact :-ms-input-placeholder {
    color: gray;
}

#contact ::-ms-input-placeholder {
    color: gray;
}

#contact #sosmed-info {
    flex-direction: column;
}


@media only screen and (min-width:1200px) {
    #contact #sosmed-info {
        flex-direction: row;
    }
}


@media only screen and (max-width:500px) {
    #contact .text-info {
        padding-left: 20px;
    }

    #contact #form-contact {
        padding-top: 30px;
    }
    #contact .contact-form .row:nth-child(1){
        flex-direction: column;
    }

}

@media only screen and (min-width: 501px) and (max-width:800px) {
    #contact .text-info {
        padding-left: 0px;
    }

    #contact #form-contact {
        padding-top: 30px;
    }

}