.get-in-touch-background {
    background-color: #EDF5FF;
    padding-top: 5px;
    padding-bottom: 5px;
}

.get-in-touch {
    background: url('../img/pic/git.png') center/cover no-repeat, #1d1d1d;
    color: #ffffff;
    text-align: center;
    padding: 40px 5px;
    border-radius: 10px;
    margin: 50px 5% 50px 5%;
    max-width: 100%;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.get-in-touch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    border-radius: 10px;
}

.get-in-touch h2, 
.get-in-touch p, 
.contact-form {
    position: relative;
    z-index: 1;
}

.get-in-touch h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.get-in-touch p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0px;
    margin-top: 0px;
    color: #ffffff;
    padding: 0px 50px;
}

.contact-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.contact-form input[type="email"] {
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 25px;
    border: 2px solid #2A7DE8;
    width: 250px;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #0A4986;
    color: white;


}

.contact-form input[type="email"]::placeholder {
    color: #ffffff; /* Ubah placeholder menjadi putih dengan transparansi */
}

.contact-form input[type="email"]:focus {
    border-color: #fff; /* Border tetap putih saat fokus */
    outline: none;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5); /* Glow putih */
    color: #fff; /* Teks putih saat mengetik */
}

.contact-form button {
    background-color: #0A4986;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: white;
    color:#0A4986;
}

@media (max-width: 768px) {
    .contact-form {
        padding-left: 15px;
        padding-right: 15px;
    }
}