﻿.abc {
    max-width: 1400px;
    margin: 30px auto;
    padding: 3rem;
    background: linear-gradient(135deg, #001a71,#fd5115a9,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff, #ffffff, #ffffff,#ffffff,#fd5115a9,#001a71);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #ddd; /* Daha belirgin bir çerçeve */
    transition: all 0.3s ease;
}

/* Görsel Alanı */
.image-container img {
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
}

/* Başlıklar */
.sec-subtitle {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 1px;
}

.sec-title {
    font-size: 28px;
    color: #001a71;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 3px solid #001a71;
    display: inline-block;
}

/* Form Input Alanları */
.form-control {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #001a71;
    }

/* Gönder Butonu */
.xdxd {
    display: inline-block;
    padding: 12px 30px;
    height: 45px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    background-color: #001a71 !important;
    border: none;
    box-shadow: 0px 6px 15px rgba(0, 26, 113, 0.4);
    transition: all 0.3s ease;
}

    .xdxd:hover {
        background-color: #00248f !important;
        box-shadow: 0px 8px 20px rgba(0, 26, 113, 0.5);
        transform: translateY(-2px);
    }

/* Mesaj Alanı */
textarea.form-control {
    height: 120px;
    resize: none;
}

.image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .image-container {
        width: 100%;
        height: auto; /* Görselin yüksekliği otomatik ayarlanır */
    }

        .image-container img {
            width: 100%;
            height: auto;
        }
}
