.trucklo-form-wrapper {
    width: 100%;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trucklo-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trucklo-form-group input[type="text"],
.trucklo-form-group input[type="email"] {
    font-family: inter, sans-serif;
    width: 100%;
    padding: 14px;
    border: 1px solid #0D12344D;
    border-radius: 16px;
    font-size: 18px;
    color: #0D1234;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.trucklo-form-group input:focus {
    outline: none;
    border-color: #EF4136; /* Czerwony motyw Trucklo */
}

.trucklo-form-checkbox-group {
    margin-top: 30px;
    margin-bottom: 30px;
}

.trucklo-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.trucklo-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 24px;
    height: 24px;
    accent-color: #EF4136;
}

.trucklo-btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #EF4136; /* Odcień z makiety */
    color: #FFFFFF;
    padding: 14px 40px;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.trucklo-btn-submit:hover {
    background-color: #0D1234; /* Ciemnogranatowy odcień z makiety */
}

.trucklo-form-message {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
}

.trucklo-form-title {
    color: #0D1234; /* Ciemnogranatowy kolor z Twojego projektu */
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}