/* Bildirim Kutusu */
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4CAF50; /* Başarı için yeşil */
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    max-width: 80%;
    width: 400px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.notification.show {
    opacity: 1;
}


        .form {
            background-color: #232323;
            border-radius: 20px;
            box-sizing: border-box;
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 900px; /* Daha geniş bir alan kaplaması için artırıldı */
            width: 100%; /* Tam genişlikte olması sağlandı */
            margin: auto;
        }

        .title {
            color: #eee;
            font-family: sans-serif;
            font-size: 36px;
            font-weight: 600;
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }

        .subtitle {
            color: #eee;
            font-family: sans-serif;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }

        .input-container {
            height: 50px;
            position: relative;
            width: 100%;
            max-width: 420px; /* Daha geniş input alanları */
            flex: 1 1 45%;
        }

        .input {
            background-color: #333;
            border-radius: 12px;
            border: 0;
            box-sizing: border-box;
            color: #eee;
            font-size: 18px;
            height: 100%;
            outline: 0;
            padding: 4px 20px 0;
            width: 100%;
        }

        .textarea-container {
            width: 100%;
            max-width: 880px; /* Textarea genişliği formun tamamını kaplar */
            height: 120px;
            position: relative;
            margin-top: 10px;
        }

        .textarea {
            background-color: #333;
            border-radius: 12px;
            border: 0;
            box-sizing: border-box;
            color: #eee;
            font-size: 18px;
            outline: 0;
            padding: 15px 20px;
            width: 100%;
            height: 100%;
            resize: none;
        }

        .cut {
            background-color: #232323;
            border-radius: 10px;
            height: 20px;
            left: 20px;
            position: absolute;
            top: -20px;
            transform: translateY(0);
            transition: transform 200ms;
            width: 70px;
        }
        .cut1 {
            width: 90px;
        }

        .iLabel {
            color: #65657b;
            font-family: sans-serif;
            left: 20px;
            line-height: 14px;
            pointer-events: none;
            position: absolute;
            transform-origin: 0 50%;
            transition: transform 200ms, color 200ms;
            top: 20px;
        }

        .input:focus ~ .cut,
        .input:not(:placeholder-shown) ~ .cut,
        .textarea:not(:placeholder-shown) ~ .cut {
            transform: translateY(8px);
        }

        .input:focus ~ .iLabel,
        .input:not(:placeholder-shown) ~ .iLabel,
        .textarea:not(:placeholder-shown) ~ .iLabel {
            transform: translateY(-30px) translateX(10px) scale(0.75);
            color: #dc2f55;
        }

        .submit-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .submit {
            background-color: #08d;
            border-radius: 12px;
            border: 0;
            box-sizing: border-box;
            color: #eee;
            cursor: pointer;
            font-size: 18px;
            height: 50px;
            padding: 0 30px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .submit:active {
            background-color: #06b;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .input-container, .textarea-container {
                flex: 1 1 100%;
            }
        }