.contact-form {
    max-width: 100%;
    padding: 50px 10px;

    ::placeholder {
        color: #888; /* Change to your desired color */
        opacity: 1; /* Firefox */
    }

    input, textarea {
        padding: 5px 10px;
        font-size: 0.8em;
        font-family: 'Karla';
        border: 1px solid #282299;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    #custom-file-input {
        position: relative;
        border: 3px dashed #ce7474;
        padding: 5px;
        transition: all 0.7s;
        margin: 20px 0;
    }
    
    #custom-file-input input[type="file"] {
        position: absolute;
        width: 50%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

    #custom-file-input label {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        font-size: 16px;
        font-family: 'Karla';
        background-color: #282299;
        color: #f8f7f2;
        text-align: center;
        cursor: pointer;
        z-index: 2;
        width: 50%;

        i {
            margin-right: 10px;
        }
    }
    
    #custom-file-input #file-name {
        display: block;
        padding: 10px 5px;
        font-size: 16px;
        color: #f8f7f2;
        text-align: center;
        width: 50%;
        transition: all 0.7s;

        i {
            margin-right: 10px;
        }
    }

    #custom-file-input.file-chosen-border {
        border: 3px dashed #282299;
    }

    .no-file {
        background-color: #ce7474;
    }

    .correct-file {
        background-color: #282299aa;
    }

    .file-input-button {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: stretch;
    }

    .file-requirements {
        font-size: 0.7em;
        color: #888;
        text-align: center;
        margin: 5px 0 0 0;
    }

    .dobrowolna-zgoda {
        font-size: 0.6em;
        color: #888;
        text-align: center;
        margin: 5px 0;
    }

    .checkbox-field {
        display: flex;
        flex-direction: row;
    }

    #agreement {
        width: 10%;
    }

    [type="submit"] {
        display: block;
        padding: 10px;
        margin-top: 10px;
        font-size: 16px;
        font-family: 'Karla';
        /* background-color: #282299; */
        border: 1px solid #ce7474;
        background-color: #ce7474;
        color: #f8f7f2;
        text-align: center;
        cursor: pointer;
        z-index: 2;
        width: 100%;
        transition: all 0.7s;

        i {
            margin-right: 10px;
        }
    }

    .correct-form {
        background-color: #282299;
        border: 1px solid #282299;
    }

    label[for="agreement"] {
        font-size: 0.8em;
        text-align: left;
    }
}