body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1000px;
    margin: 10%;

}

.contact-info {
    
    width: 40%;
}

.contact-form {

    width: 50%;
}


input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 150px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    flex-basis: 80%; /* Two inputs per row */
}

.submit-btn {
    background-color: #f0ad4e; /* Orange */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    font-size: 18px;
}
.back-button {
    position: absolute; /* Butonu sayfanın sol üst köşesine konumlandır */
    top: 20px; /* Üstten boşluk */
    left: 20px; /* Soldan boşluk */
    padding: 10px 20px; /* İç boşluk */
    background-color: #f0ad4e; /* Butonun arka plan rengi */
    color: white; /* Butonun yazı rengi */
    border: none; /* Kenarlık kaldırıldı */
    border-radius: 50%; /* Kenarları yuvarlaklaştır */
    cursor: pointer; /* İmleci pointer yap */
    font-size: 16px; /* Yazı boyutu */
    width: 50px;
    height: 50px;
    text-align: center;

}

.back-button:hover {
    background-color: #e09c42; /* Butonun üzerine gelindiğinde rengi değiştir */
}
/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }
}
