
/* Destek formu stilleri */

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-form {
    width: 70%;
    height: auto;
    margin: 30px 0px 100px;
    padding: 50px;
    border: 5px solid #cacaca;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.support-form input,
.support-form textarea {
    width: 96.5%;
    height: auto;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#file-upload {
    display: none; 
}

.file-upload-label {
    display: inline-block;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #7D3F4C;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.file-upload-label:hover {
    background-color: #662E3A;
    transform: scale(1.05);
}

.file-upload-label img {
    vertical-align: middle;
    width: 30px;
    height: auto;
}

.submit-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 10px 15px;
    font-size: 14px;
    color: #ffffff;
    background-color: #7D3F4C;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.5s ease, transform 0.5s ease;  
}

.submit-button:hover {
    background-color: #662E3A;
    transform: scale(1.05);
}

.submit-button img {
    width: 30px;
    height: auto;
}

.upload-message {
    display: none;
    margin: 0px 0px 20px 0px;
    font-size: 14px;
    color: #28a745;
}

.form-note {
    padding: 10px;
    border: 2px dotted #4b4a4a;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

#char-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

label {
    font-size: 16px;
}

/* Destek formu mobil stilleri */

@media (max-width: 1080px) {
    .support-form {
        width: 100%;
        height: auto;
        padding: 20px;
        margin: 20px 5px 100px;
    }

    .support-form h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .support-form input,
    .support-form textarea {
        font-size: 13px;
        padding: 12px;
    }

    .button-container {
        flex-direction: row;
        align-items: center;
    }

    .support-form .submit-button {
        width: 40%;
        margin-bottom: 15px;
        padding: 10px 0;
        font-size: 13px;
    }

    .file-upload-label {
        max-width: 50px;
        height: auto;
    }

    .file-upload-label img,
    .support-form .submit-button img {
        width: 25px;
    }

    .submit-button img {
        margin-left: 30px;
    }

    .form-note {
        font-size: 13px;
    }

    .upload-message {
        font-size: 13px;
    }
    
    #char-count {
        font-size: 13px;
    }

    label {
        font-size: 15px;
    }
}

/* --------------------------------------------------------- */



